@font-face {
    font-family: 'Inconsolata';
    font-style: normal;
    font-weight: 700;
    src: url(/fonts/Inconsolata-Regular.ttf) format('truetype');
}
@font-face {
    font-family: 'Oxanium';
    font-style: normal;
    font-weight: 700;
    src: url(/fonts/Oxanium-Light.ttf) format('truetype');
}
:root {
    --darktheme-bg: #000;
    --darktheme-font: #fff;
    --lighttheme-bg: #fff;
    --lighttheme-font: #000;
    --alt-font: #4c6b8a;
}

html, body {
    height: 100%;
}

body {
    background: var(--lighttheme-bg);
    color: var(--lighttheme-font);
    font-family: 'Inconsolata', monospace;
    overflow-x: hidden;
    overflow-y: auto;
}

body header #logo { 
    display: block;
    width: 600px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}


h1 {
    margin-top: 1em;
    text-transform: uppercase;
    font-size: 2em;
    font-family: 'Oxanium', cursive;
}


a {
    color: var(--alt-font);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

.center {
    text-align: center;
}

#main {
    overflow: auto;
    padding-bottom: 30px;
}

#footer{ 
    position: relative;
    height: 30px;
    margin-top: 30px;
    clear: both;
}

.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 600px;
    padding: 2%;
}

ul {
    text-align: justify;
    list-style-type: square;
    padding-left: 0px;
}

ul:after {
    content: "";
    display: inline-block;
    width: 100%;
}

ul:before {
    content: "";
    display: block;
}

li {
    display: inline-block;
    position: relative;
}

u {
    color: var(--alt-font);
    text-decoration: underline;
}

@media (max-width: 980px) {
    body header #logo { 
        display: block;
        width: 100%;
        text-align: center;
         margin-top: 20px;
        margin-bottom: 20px;
}
    .container {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        width: 90%;
        padding: 2%;
}
