@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display-swap');

body{
    font-family: 'Atkinson Hyperlegible', Helvetica, sans-serif;
    font-size: 18px;
    margin: 0;
}
header {
    background: rgb(210, 205, 200);
    position: fixed;
    height: 10vh;
    width: 100vw;
    padding: 0% 1%;
}
#header_logo{
    position: fixed;
    top:1.6vh;
    left:1vh;
    height: 4vh;
}
header h1{
    margin-left: 5vh;
    resize: none;
}
nav{
    position: fixed;
    position: inherit;
    height: 4vh;
    width: 100vw;
}
main{
    height: 80vh;
    width: 80vw;
    padding: 10% 10% 5%;
    overflow: auto;
}
footer{
    background: rgb(210, 205, 200);
    height:6vh;
}
footer img{
    max-height: 5vh;
}


nav a{
    display: inline-block;
    font-weight: bold;
    color: #ffffff;
    background-color: #286f45;
    /* background-color: #185f35; */
    border-radius: 4px 4px 0 0;
    font-size: 20px;
    text-align: center;
    border-bottom: 10px solid #363636;
    padding: 2px;
    margin: 0px 4px 0px;
    width: 12%;
    text-decoration: none;
    
}
nav a:hover{
    position: relative;
    color: #DDDDDD;
    background-color: #185f35;
    border-bottom: 6px solid #363636;
    top: 4px;
}
nav a.active{
    background-color: #ffa936;
    color: #000000;
}

h1, h2, h3, h4 {
    font-family: courier,'DejaVu Sans Mono', monospace, sans-serif;
}
h1{
    font-size: 36px;
    text-align: left;
}

ul{
    list-style-type: square;
}
