* {
    margin: 0;
    padding: 0;
    user-select: none;
    font-family: 'Courier New', Courier, monospace
}

body {
    width: 100vw;
    height: 100dvh;
}

body > * {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    height: 5%;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

#h1-container {
    height: 100%;
    display: flex;
    justify-content: start;
    margin: 1%;
}

#select-container {
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: start;
    margin: 1%;
}

select {
    margin: 1%;
}

main {
    height: 90%;
}

footer {
    height: 5%;
    font-weight: bold;
    align-items: end;
}

footer > * {
    margin: 1%;
}

a, a:visited {
    text-decoration: none;
    color: black;
}

script {
    display: none !important;
}

#quote {
    font-style: italic;
    text-align: center;
    margin: 5%;
}

#quote:hover {
    cursor: pointer;
}