* {
    margin: 0;
     padding: 0;
}

body {
    font-family: "Courier New", Courier, monospace;
     font-size: 100%; 
    color: #024959;
    background-color: #fff;
}




#OutWrapper {
    margin: 20px auto;
    width: 1200px; 
    
}

header {
    width: 100%;
    height: 150px;
    text-align: center
        
}

h2 {
      font-family: 'Zilla Slab', serif;
    font-size: 4em;
    
}

h1 {
    font-family: 'Zilla Slab', serif;
    font-size: 4em;
    margin-bottom: 20px
}

*/This styles the home havigation*/

#homenav {
        font-family: 'Zilla Slab', serif;
    font-size: 1.5em;
}

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

#homenav li{
    display: inline;
    padding-right: 15px;
}

#homenav a{
    color: #fff;
    text-decoration: none;
}

#homenav a:link, a:visited {
    color: beige;
    text-decoration: none;
}

#homenav a:hover; a:active {
    text-decoration: underline;
    color:crimson;
}

*/This styles the main havigation*/

#mainnav {
        font-family: 'Zilla Slab', serif;
    font-size: 1.5em;
}

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

#mainnav li{
    display: inline;
    padding-right: 15px;
}

#mainnav a{
    color: #024959;
    text-decoration: none;
}

#mainnav a:link, a:visited {
    color: #D99791;
    text-decoration: none;
    
}

#mainnav a:hover; a:active {
    text-decoration: underline;
    color: #D99791;

}

main {
    text-align: center; 
    
}



/*this is sub navigation*/

#subnav {
    font-family: 'Zilla Slab', serif;
    font-size: 1.5em;
}

#subnav ul {
    list-style-type: none;
}

#subnav li {
    display: block; 
    padding-bottom: 20px;
    
}

#subnav a:link, a:visited {
    color: #024959;
    text-decoration: none;
}

#subnav  a:hover; a:active {
    text-decoration: underline;
    color:#D99791; 
    
} 


aside {
    top: 200px;
    width: 200px;
    margin: 5px;
    height: 100%;
    position: fixed
    
}

main {
    text-align: center;
    
}

p {
    text-align: left;
    margin: 0 50px;
    line-height: 1.75;
    font-size: 1em;
}

img{
    margin-bottom: 20px
    
}

footer {
  font-family: "Courier New", Courier, monospace;
  font-size: .8em;
  padding: 20px;
  position: fixed;
    bottom: 0;
    width: 100%
}