/*
Travis Millican
5/21/16
Final Project Website: IT-270
*/

/* Display HTML5 structural elements as blocks */

article, aside, figure, figcaption, footer, hgroup, header, 
section, nav {
   display: block;
}

body{
	
	min-width: 900px;
	max-width: 900px;
	background-color: green;
}

/* Navigation lists */
nav.horizontal {
   width: 99%;
}

nav.horizontal ul li {
   display: block;
   float: left;
   height: 25px;
   margin-left: 12px;
   margin-right: 12px;
   padding: 3px;
   border: solid white 1px;
}

nav.horizontal ul li a {
	font-family: "Comic Sans MS", cursive, sans-serif;
	font-variant: small-caps;
	font-size: 20px;
	text-align: center;
    display: block;
    color: white;
    letter-spacing: 2px;
}

nav.horizontal ul li a:hover {
   background-color: lightgreen;
   color: green;
}