/*
   New Perspectives on HTML and CSS
   Tutorial 
   Case Problem 

   my page Style Sheet
   Author: Cori Smith
   Date:   

   Filename:         imagesheet.css
   Supporting image.htm
*/


   /*Header Styles*/
   
   header{
	   font-family:cursive;
	   font-size:60px;
	   text-align:center;
   }

	/*Nav Style*/
	nav{
	float:left;
	font-size:20px;
}



	/*Body Style*/
	
	body{
		background-color:moccasin;
	}

	/* Footer styles */
	
	footer{
	text-align:center;
	border-bottom:solid 2px;
	border-top:solid 2px;
	font-style:italic;
}