/* 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%;
       background-color: #0099ff;

    }
    image {
      height: ;
      width: ;
    }

    header {
        background-color:#33cccc;
        border: Black;
        padding: 5px;
        font-size: ;
        display: block;

    }

    header h1 {
        text-align: center;
    }

    nav {
        float: left;
        background-color: rgba(0, 0, 0, .25);
    }
    nav ul {
        padding: ;
        float: left;
        border-bottom: ;
        list-style-type: none;
    }
    nav li {
        float: left;
        display: block;
        margin-bottom: 35px;
        height: 25px;
        padding: 20px 18px 8px 18px;
        vertical-align: middle;


    }
    nav li a {
        display: block;
        height: 25px;
        padding: 12px 16px 8px 16px;
        vertical-align: middle;
        transition: background-color 0.5s ease;
        border: 2px solid;
        border-radius: 15px;
}
    nav li a:hover {
    background-color: orange;
    transition: background-color 0.5s ease;
    border: 2px solid;
    border-radius: 15px;
}
    a {
        color: ;
    }
    section {
        width: 100%;
        display: inline-block;
        float: left;
        width: 800px
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7db9e8+0,1e5799+100&0+0,1+100 */
background: -moz-linear-gradient(top, rgba(125,185,232,0) 0%, rgba(30,87,153,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(125,185,232,0) 0%,rgba(30,87,153,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(125,185,232,0) 0%,rgba(30,87,153,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8', endColorstr='#1e5799',GradientType=0 ); /* IE6-9 */
    }
    p{        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7db9e8+0,1e5799+100&0+0,1+100 */
    background: -moz-linear-gradient(top, rgba(125,185,232,0) 0%, rgba(30,87,153,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(125,185,232,0) 0%,rgba(30,87,153,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(125,185,232,0) 0%,rgba(30,87,153,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007db9e8', endColorstr='#1e5799',GradientType=0 ); /* IE6-9 */

      }
    aside {
        width: 17%;
        display: inline-block;
        background-color:;
        padding:;
        min-height: 100%;
    }
    aside ul {
        list-style-type: none;
    }
    footer {
        width: 800px;
        background-color:black;
        color:white;
        clear: both;
        display: block;
        text-align: center;
}
