body{
    color:#606060;
    font-family: "Open Sans",sans-serif;
    font-size: 16px;
    margin: 0;
}

img
{
    max-width: 100%;
    display: block;
}


/* LAYOUT AND TYPOGRAPHY */

.site-heading{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.site-title{
    font-size: 1.5rem;
    color: #15577D;
    text-align: center;
}

.site-subtitle{
    text-align: center;
}

.nav-list{
    display: none;
}

.container-main{
    width: 95%;
    max-width:960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    margin: 2em auto;
}

.main-column{
    border: 2px solid #606060;
    margin-bottom: 1.5em;
    padding: 1em 1em 0 1em;
}

.main-column-date{
    color: red;
    text-align: right;
}

.aside-list:first-child{
    list-style: non;
}

.aside-list{
    list-style: square;
}

.aside-link:link{
    text-decoration: none;
    color: #15577d;
}

.footer-info{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    background: #313B48;
    padding: 0.2em 0 2em 1.5em;
}

.footer-info-item{
    color:#fff;
}

.footer-info-item{
    font-family: "Montserrat",sans-serif;
}

.footer-info-item ul{
    list-style: none;
    padding: 0;
}

.footer-info-item li{
    padding: 0;

}

.footer-copyright p{
    text-align: center;
}

/*nav-bar styling*/

.nav{
    position: relative;
}


.hamburger{
    position: absolute;
    cursor: pointer;
    top:3%;
    right:10%;
    z-index: 100;
}


.line1,.line2,.line3{
    background-color:black;
    width: 30px;
    height: 3px;
    margin: 5px;
    border-radius: 2px;
}

.navbar-list{
    display: flex;
    flex-direction: column;
    position: fixed;
    list-style: none;
    height: 100vh;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    background-color: rgba(0,0,0,0.93);
    margin: 0;
    padding: 0;
    top:0;
    bottom: 0;
    left:0;
    right:0;
    clip-path: circle(0px at 85% 5%);
    -webkit-clip-path: circle(0px at 85% 5%);
    opacity: 50%;
    transition: all 900ms ease-out;;
    font-size: 2rem;
    z-index: 2;
}

.nav-open .nav-list{
    clip-path: circle(2000px at 90% 0%);
    -webkit-clip-path: circle(2000px at 90% 0%);
    opacity: 100%;
}

.nav-open .line1{
    transform: skewY(45deg);
    background-color: red;
    width: 25px;
}

.nav-open .line2{
    display: none;
}

.nav-open .line3{
    transform: skewY(-45deg);
    width: 25px;
    background-color: red;
}

.nav-link{
    text-decoration: none;
    color:rgba(255,255,255,0.7);
}

.nav-link:hover{
    color: red;
}

.main-column-body a{
    text-decoration: none;
    color: #045283;
}



table{
    width:100%;
    margin-top: 1em ;
}

table,td{
    border: 1px solid black;
    border-collapse: collapse;
}

td{
    text-align: center;
    font-weight: 500;
}



/* Larger Screen */

@media (min-width:800px){
    .site-heading{
        flex-direction: row;
    }

    .hamburger{
        display: none;
    }

    .nav-list{
        flex-direction: row;
        clip-path: none;
        position: relative;
        height: 10vh;
        background-color:white;
        font-size: 1rem;
    }

    .nav-list-item{
        margin-left: 2em;
    }

    .nav-link{
        color:#805867;
    }


    .current-page{
        color: #30afb8;
    }
    .container-main{
        flex-direction: row;
    }
    main{
        width:80%
    }
    aside{
        width:20%;
    }
    .footer-info{
        flex-direction: row;
    }
}