/*
   New Perspectives on HTML and CSS
   Tutorial 
   Case Problem 

   my page Style Sheet
   Author: Cori Smith
   Date:   

   Filename:         style.css
   Supporting homepage.htm
*/


   /*Header Styles*/
   h1{
	 text-align:center;
	 padding-right:140px;
   }
   
 
     
   /* Footer and address styles */




/*Nav Style*/

nav{
	float:left;
	font-size:20px;
}

/*Article Style*/

article1{
	font-size:20px;
	display:block;
	text-align:center;
	padding-left:200px;
	padding-right:200px;
	
}



article3{
	float:right;
}

article5{
	text-align:center;
	
}
/*Body Style*/

body{
	background-color:gray;
}

/*Footer Style*/

footer{
	text-align:center;
	border-bottom:solid 2px;
	border-top:solid 2px;
	font-style:italic;
}
   