﻿body {
    background-color: white;
    text-align: center;
    color: darkslategrey;
    font-family: 'Open Sans', sans-serif;
}



div {
    background-color: darkslategrey;
    color: white;
    margin-top: 25px;
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}


nav {
    background-color: darkslategrey;
    height: 50px;
}

    nav ul {
        height: 50px;
        width: 650px;
        margin: 0 auto;
        font-family: 'Open Sans', sans-serif;
    }

        nav ul li {
            list-style-type: none;
            float: left;
            width: 150px;
            font-family: 'Open Sans', sans-serif;
        }

li a {
    color: white;
    text-align: center;
    line-height: 50px;
    display: block;
}

    li a:hover {
        background-color: white;
        color: black;
    }
