@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz@6..96&family=Rosarivo&display=swap');

div#high_res{
    display: none;
}

div#low_res{
    display: none;
}


@media (min-width: 720px) {
    html{
        height: 100%;
        overflow: auto;
    }
    body{
        height: 100%;
        overflow: auto;
        margin: 0;
        background-color: rgb(143, 143, 143);
    }
    ul{
        list-style-type: none;
    }
    main{
        font-family: 'Rosarivo', cursive;                    
        text-align: center;
        position: static;
        height: 100%;
        overflow: auto;
    }

    main > div{
        background-color: rgb(251, 252, 244);
        height: 100%;
        width: 60%;
        margin-top: 64px;
        margin: auto;
        overflow: auto;
    }
    div#high_res{
        height: 100%;
        overflow: auto;
    }
    div#high_res{
        display: block;
    }
    /* Header stuff */
    header{
        display: flex;
        position: fixed;
        background-color: black;
        width: 100%;
        margin: 0%;
        height: 5em;
        align-items: center;
        justify-content: center;
    }
    
    ul#header_list{
        margin: 0;
        padding: 0;
        display: flex
    }
    
    header > nav > ul > li{
        display:flex;
    }
    
    a.headerLink{
        display: flex;
        padding-right: 1em;
        padding-left: 1em;
        padding-top: 15px;
        color: white;
        font-size: 1.5em;
        text-decoration: none;
        border: 5px solid rgba(255, 255, 255, 0);
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
    }
    
    a.headerLink:hover
    {
        border-color: white;
    }
}
@media (max-width: 1100px){
    a.headerLink{
        font-size: 1em;
        height: 2em;
        border: 3.5px solid rgba(255, 255, 255, 0);
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
    }
    header
    {
        height: 3.5em;
    }
}

@media (max-width: 719px){
    div#low_res{
        display: block;
    }
}

