@font-face {
    font-family: GeistMono;
    src: url(../fonts/GeistMono/webfonts/GeistMono-ExtraLight.woff2);
}

body {
    font-family: GeistMono;
    min-height: 100vh;
    font-size: 1em;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-x: hidden;
    margin: 0px;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
    body {
        font-size: 2em;
    }
}

@media screen and (max-width: 800px) {
    body {
        font-size: 3em;
    }
}

header {
    width: 100vw; 
    background-color: #222222;
}

main {
    width: 100vw;
    display: flex;
    flex-grow: 2;
    /* margin-bottom: 45px;  */
    align-items: center; 
    justify-content: center; 
    background-color: #333333;
}

footer {
    /* position: fixed; */
    bottom: 0px;
    font-size: 14px;
    width: 100vw; 
    height: 45px; 
    background-color: #222222;
}

fieldset {
    margin: 0;
}

legend {
    font-size: 0.75em;
    text-align: left;
}

ul {
    list-style-type: "- ";
}

span a {
    color: white;
    transition: 0.5s;
}

span a:hover {
    filter: invert(100%);
    color: cyan;
}