* { 
    margin: 0;
    padding 0;   
    }
body { 
  font-family: "Times New Roman", Times, serif;
    font-size: 100%
    color: #000;
    background-color: #fff;
} 

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


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

h1 { 
    font-family: 'Oswald', sans-serif; 
    font-size: 4em; 
    color: orange; 
        
 }
h2 { 
    font-family: 'Oswald', sans-serif; 
    font-size: 2em; 
    color: orange; 
        
 }

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

main { text-align: center;

}
p{ text-align: left;

}
 

 #HomeNav { 
     font-family: 'Oswald', 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: skyblue;
         text-decoration: none;
     }
     
 #HomeNav a:link, a:visited { 
        color: skyblue;
         text-decoration: none;
     } 
/*This styles my home navigation*/  

#HomeNav a:hover, a:active { 
        color: skyblue;
         text-decoration: underline;
     } 
/*This style is sub navigation*/ 
#SubNav { 
    font-family: 'Oswald', sans-serif; 
    font-size: 1.2em;
 
}
#SubNav li { 
    display: block;
    padding-bottom:20px;
}

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

#SubNav a:hover, a:active {  
        color: skyblue;
         text-decoration: underline;
}


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