
/* color codes for site --
    light blue: #99cadc
    med blue: #6495a7
    darker blue: #2e5f71
    darkest blue: #00293b
    black, white
*/


* {
    color: #000000;
    font-family: 'Poppins', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a {
    font-family: 'Space Grotesk', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 }

/* link behavior */
a:link {
    color:#000000;
    text-decoration: none;
}
a:hover {
    color: #6495a7;
}

/* side nav */
.sidenav {
    margin: 0;
    padding: 0;
    width: 200px;
    position: fixed;
    overflow: auto;
    font-size: smaller;
}
.sidenav a {
    display: block;
    padding: 16px;
    color:#767676;
}
.sidenav a:hover {
    color:#6495a7
}
div.content {
    margin-left: 200px;
    padding: 1px 16px;
    min-height: 1000px;
}
.sidenav .icon {
    display:none
}
/* adjust side to top nav on smaller screens */
/*
@media screen and (max-width: 700px) {
    .sidenav {
        width: 100%;
        height: auto;
        position: relative;
        font-size: smaller;
    }
    .sidenav a {
        float: left;
    }
    div.content {
        margin-left: 0;
    }
} */
/* collapse nav on even smaller screens */
@media screen and (max-width: 700px) {
    .sidenav {
        width: 100%;
        height: auto;
        position: relative;
        font-size: smaller;
    }
    .sidenav a {
        text-align: center;
        float: left;
        font-size: smaller;
    }
    .sidenav a:not(:first-child) {
        display:none;
    }
    .sidenav a.icon {
        float: right;
        display: block;
    }
    .sidenav.responsive {
        position: relative;
    }
    .sidenav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .sidenav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    div.content {
        margin-left: 0;
    }
}

/* footer */
footer p {
    color: #767676;
    text-align: right;
    font-size: x-small;
    margin-right: 2%;
}

/*page titles*/
.projtitle {
    margin-top: 20px;
    text-align: right;
    width: 100%;
    margin-right: 17%;
    color: #2e5f71;
    font-family: 'Space Grotesk', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* materials listing */
.materials {
    color: #767676;
    font-size: small;
    margin-top: 15px;
}
