* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size:100%;
    color: black;
    background color: white;    
}

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

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

h1 {
   font-family: 'Raleway', sans-serif; 
    font-size: 4em;
}

h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.7em;
    padding-bottom: 20px;
}


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

main {
    text-align: center;
    
}

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


img {
    margin-bottom: 20px;
}

/*this styles my home navigation*/

#HomeNav {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5em;
}

#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 {
    text-decoration: underline;
    color: fuchsia;
}


/*this styles my home navigation*/
#MainNav {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5em;
}

#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 {
    text-decoration: underline;
    color: fuchsia;
}

/* This styles the sub navigation*/

#SubNav {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5em;
}
#SubNav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#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: fuchsia;
    text-decoration: underline;
}

footer {
    font-family: "Times New Roman", Times, serif;
    font-size: 1em;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}