body{
    margin: 0;
    padding: 0;
}

ul{
    padding: 0;
    list-style-type: none;
}

li{
    margin-bottom: 20px;
    font-family: sans-serif;
    font-size: 18px;
    text-transform: uppercase;
}

li:hover{
    color: #005695;
    cursor: pointer;
}

.close-btn{
    font-family: sans-serif;
    font-size: .7em;
    color: white;
    margin: 10px 10px;
    float: right;
    cursor: pointer;
}

.close-btn:hover{
    color: #005695;
}

.hamburger{
    position: absolute;
    font-size: 48px;
    margin: 0 0 0 35px;
    cursor: pointer;
}

.hamburger:hover{
    color: #005695;
}

.nav-container{
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #739dd2;
}

.main-nav{
    margin: 45px 0 0 30px;
    color: white;
}

.nav-text {
    display: inline-block;
}

.caret{
    position: absolute;
    left: 250px;
}

.content-container{
    font-family: sans-serif;
    margin: 40px 80px 0 400px;
}

.centered{
    width: 33px;
    font-size: 28px;
    text-align: center;
    margin-right: 10px;
    vertical-align: middle;
}

.hidden{
    display: none;
}

.light-blue{
    color: #739dd2;
}

.dark-blue{
    color: #005695;
}

.gray{
    color: gray;
}

.lightgray{
    color: lightgray;
}

@media screen and (max-width:640px) {

    .hamburger{
        position: fixed;
        width: 100%;
        height: 50px;
        top: 0;
        font-size: 36px;
        padding-top: 14px;
        margin: 0;
        color: white;
        background-color: #739dd2;
    }

    .hamburger:before{
        margin-left: 25px;
    }

    .content-container{
        margin: 89px 25px 0 25px;
    }

    .nav-container{
        position: fixed;
        top: -500px;
        left: 0;
        width: 100%;
        height: auto;
        background-color: #739dd2;
    }

    .caret{
        display: none;
        visibility: hidden;
    }

}