* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 18px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    height: 100%;
}

img {
    height: 100%;
}

head {
    display: none;
}

header {
    display: grid;
    grid-template-columns: max-content max-content 1fr max-content max-content;
    align-items: center;
    box-shadow: 0px 10px 20px 1px #5b5b5b;
    padding: 0.5rem 1rem;
    height: 70px;
    gap: 2rem;
}

body {
    height: 100%;
}

input {
    --input-border-colour: #c6c6c6;
    display: block;
    padding: 0.3rem;
    border-radius: 0.3rem;
    border: 1.5px solid #c6c6c6;
    min-width: 0;
    font-size: 1rem;
}

input:focus-visible {
    box-shadow: 0px 0px 6px 0px var(--input-border-colour);
    outline: none;
}

button {
    display: block;
    padding: 0.5rem 0.8rem;
    color: white;
    background: black;
    border: none;
    border-radius: 0.3rem;
    font-size: unset;
    cursor: pointer;
}

hr {
    margin: 0.5rem auto;
    border: none;
    height: 0.2rem;
    border: 0px solid black;
    border-radius: 50px;
    background-color: black;
}