:root {
    --hamburger-transition-timing: 200ms;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    font-family: Noto Sans, sans-serif;
    background-color: white;
}

header {
    display: flex;
    align-items: center;
    justify-content: start;
    min-height: 10vh;
    padding: 10px;
    border-bottom: 1px solid #1f1f1f;
    box-shadow: 0px 1px 2px #1f1f1f;
}

header > * {
    margin: 7px;
}

header > h1 {
    font-size: 1.75rem;
    user-select: none;
    display: none;
}

main {
    min-height: 100vh;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 10vh;
    background-color: #1f1f1f;
    color: white;
}

footer > div {
    text-align: center;
}

a {
    text-decoration: none;
}

a:link {
    color: black;
}

a:visited {
    color: black;
}

a:hover {
    color: black;
    font-weight: bold;
}

a:active {
    color: black;
}

nav > a {
    display: block;
}


#hamburger {
    height: 24px;
    width: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#hamburger > div {
    height: 4px;
    background-color: black;
    transition: var(--hamburger-transition-timing);
}

#hamburger.open {
    transform: translate(-4px);
}

#hamburger.open > div:nth-child(1) {
    transform: rotate(45deg) translate(7px, 1.5px);
}

#hamburger.open > div:nth-child(2) {
    display: none;
}

#hamburger.open > div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -1.5px);
}

#hamburger-menu {
    width: 0;
    height: 0;
    background-color: #1f1f1f;
    padding: 10px;
    transition: opacity var(--hamburger-transition-timing), width var(--hamburger-transition-timing);
    opacity: 0;
    pointer-events: none;
}

#hamburger-menu.no-transition {
    transition: none;
}

#hamburger-menu > nav > a {
    color: white;
}

#hamburger-menu > nav > a.active {
    text-decoration: underline;
}

#hamburger-menu.open {
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: auto;
    min-height: 100vh;
}

#check-logo {
    height: 30px;
    width: 30px;  
}

#page-content {
    padding: 0 20px;
}

.hidden {
    display: none;
}

.no-transition {
    transition: none;
}

.email-link {
    text-decoration: underline;
    font-weight: bold;
}

.underline {
    text-decoration: underline;
}

.faq {
    margin-bottom: 25px;
}

@media screen and (min-width: 330px) {
    header > h1 {
        display: block;
    }
}