/* Note to students: Some properties are given to you to fill out,
others you can modify as they stand, and if you have time,
there are definitely some properties you should add!*/

    html {
      height: 100%;
    }
    body {
       width: 800px;
       height: 100%;
    }

    h2 {
        font-size: 30px;
    }

    header {
        background-color: ;
        padding: 5px;
        font-size: ;
        display: block;
    }
    nav {
      /*  float: left;*/
    }
    article {
        background-color: #999999;
        width: 800px;
        border: 1px solid navy;
        float: left;
    }

    img {
        width: 100%;
        align
        border: 5px solid white;
    }

    nav ul {
        padding: ;
        /*float: left;*/
        border-bottom: ;
        list-style-type: none;
    }
    nav li {
        float: left;
    }
    nav li a {
        display: block;
        height: 25px;
        padding: 12px 18px 8px 18px;
        vertical-align: middle;
        float:left;
    }
    p {
        clear: both;
    }
    }
    a {
        color: ;
    }
    a:hover {
        color: white;

}
