*{
    margin:0;
    padding:0;
}
body{
   font-family: 'Roboto', sans-serif;
    font-size: 100%;
    color: antiquewhite;
    background-color: brown;
}
#Outerwrapper{
    margin: 20px auto;
    width: 1200px;
}
header{
    width: 100%;
    height: 150px;
    text-align: center;
}
h1{
    font-family: 'Cinzel', serif;
    font-size: 3em;
}
h2{
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5em;
    padding-bottom: 20px;
}
.Chartreuse {
    color:#96A854;
}

aside{
    top: 150px;
    width: 200px;
    margin: 50px;
    height: 100%;
    position: fixed;

}

main{
    text-align: center;
}
p{
    text-align: left;
    font-size: 1em;
    line-height: 1.7;
    margin: 0 200px;
}

/*this styles my home navigation*/
#HomeNav {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2em;

}
#HomeNav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#HomeNav li{
    display: inline;
    padding-right: 20px;
}
#HomeNav a {
    color: #fff;
    text-decoration: none;
}
#HomeNav a:link, a:visted{
    color: #fff;
    text-decoration: none;
}

#HomeNav a:hover, a:active{
    text-decoration: underline;
    color: aquamarine;
}


/*this styles my main navigation*/
#MainNav {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2em;

}
#MainNav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#MainNav li{
    display: inline;
    padding-right: 20px;
}
#MainNav a {
    color: #000;
    text-decoration: none;
}
#MainNav a:link, a:visted{
    color: #000;
    text-decoration: none;
}

#MainNav a:hover, a:active{
    text-decoration: underline;
    color: aquamarine;
}
/*this styles the sub navigation*/

#SubNav{
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2em;
}
#SubNav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#SubNav li{
    display: block;
    padding-bottom: 10px;
}
#SubNav a {
      color: white;
    text-decoration: none;
}
#SubNav a:link, a:visited{
    color: white;
    text-decoration: none;
}
#SubNav a:hover, a:active{
    color: aquamarine;
    text-decoration:underline;
}
footer{
    font-family: "Times New Roman", Times, serif;
    font-size: .8em;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 80%;
}