* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cutive Mono', monospace;
    font-size: 100%;
    color: black;
    background-color: white;
    }
#OuterWrapper {
    margin: 20px auto;
    width: 1200px;
}
header {
    width:100%;
    height: 150px;
    text-align: center;
    color: #f09730;
}

h1, h2, h3 {
    font-family: 'Major Mono Display', monospace;
}
h1{
    font-size: 4em;
}

aside{
    top: 150px;
    left: 50px;
    width: 200 px;
    margin: 20px;
    height: 100%;
    position: fixed;
    overflow: auto;
}
main {
    text-align: center;
}

p {
    
    text-align: left;
    margin-left: 100px;
    margin-right: 100px;
    text-indent: 50px;
}
img{
    
    padding-bottom: 20px;
}
/*Style MainNav*/
#MainNav {
    font-size: 1.5em;
    font-family: 'Major Mono Display', monospace;
}

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

#MainNav li{
    display: inline;
    padding-right: 20px;
}

#MainNav a {
    color: black;
    text-decoration: none;
}

#MainNav a:link, a:visited {
    color: black;
    text-decoration: none;
}

#MainNav a:hover, a:active {
    color: black; 
    text-decoration: Bold;
}

/*Style HomeNav*/
#HomeNav {
    font-size: 1.5em;
    font-family: 'Major Mono Display', monospace;
}

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

#HomeNav li{
    display: inline;
    padding-right: 20px;
}

#HomeNav a {
    color: white;
    text-decoration: none;
}

#HomeNav a:link, a:visited {
    color: white;
    text-decoration: none;
}

#HomeNav a:hover, a:active {
    color: white; 
    text-decoration: Bold;
}

/*Style Subnav*/
#SubNav {    
font-size: 1.5em;
    font-family: 'Major Mono Display', monospace;
    }
#SubNav ul {
    list-style-type: none;
}

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

#SubNav a{
    color: black;
    text-decoration: none;
}

#SubNav a:link, a:visited {
    color: black;
    text-decoration: none;
}

#SubNav a:hover, a:active {
    color: black;
    text-decoration: bold;
}

/*Style Copyright*/
footer{
    font-family: 'Major Mono Display', monospace;
    font-size: .75;
    padding: 20px;
    left: 100px;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: #f09730;
}