* {
    margin: 0;
    padding: 0;
}

html {
    height: 100vh;
}

body {
    background-color: #111111;
    color: #DDDDDD;
    font-family: monospace;
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    height: 100%;
    justify-content: space-between;
}

@media (pointer:none), (pointer:coarse) {
    body {
        font-size: 2.5vw;
    }
}

a {
    text-decoration: none;
}

a:hover, a:active, a:focus {
    text-decoration: underline;
}

a:link {
    color: #FBC546;
}

a:visited {
    color: #ED6B44;
}

#bottom-g > hr, #top-g > hr {
    margin: 1em auto 1em;
    width: 90%;
}

code {
    background-color: #333333;
    padding: 1px;
    border-radius: 3px;
}

pre > code {
    display: block;
}

#top-g {
    margin: 1em 5% 0em;
    width: 90%;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

nav > hr {
    margin: auto 1em auto;
    height: 1em;
    width: auto;
}

header {
    width: 90%;
    margin: 2em auto 1em;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

#bottom-g {
    padding-bottom: 1em;
    width: 90%;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer > hr {
    margin: auto 1em auto;
    height: 1em;
    width: auto;
}
