@charset "UTF-8";
/* CSS Document */
/**
 		WDV101 Final Project 
 		Author: Sally Coil
 		Date: 11/30/15
 	*/

/* body */
body {
  font-size: 1.3em;
  font-family: Arial, sans-serif;
  color:  black;
}


p {
	font-size: 1.2em;
	line-height: 1.3em;
	padding-bottom: 20px; 
	}

.center {
        text-align: center;
	}
/* headings */

h1 {
  padding: 4px;
  background-color: silver;
  color: navy;
  text-align: center;
}

h2 {
  color: navy;
  text-align: left;
  
}
 

footer {
   padding: 6px;
}

img {
   border: double thick navy;
   margin: 0 0 0 10px;
}


 /* links */
 
  nav {
	  background-color: black;
	  line-height: 175%;
	  display: block;
	  text-align: center;  
	   }
  
  nav li {
	  display: inline;
	  padding-right: 60px;	  
  }
  
  nav a {
	  color: white;
	  font-size: 1.5em;
	  font-weight: bold;
  }

/*descendant selector of nav element*/  
 nav a:link {
     color: white;
     text-decoration: none;  
  } 
     
 nav a:visited {
   color: white;   
   }
   
 nav a:hover {
   color: red;
   text-decoration: none; 
  }
   
   a:link {
	 color: white; 
	 text-decoration: none;  
   }
   
   a:hover {
	   color: red;
   }
        
   a:visited {
	 color: white;  
   }		

   footer {
	 font-size:  1.3em; 
	 padding: 40px; 
   }


	
	



