/*
   New Perspectives on HTML and CSS
   Tutorial 
   Case Problem 

   my page Style Sheet
   Author: Cori Smith
   Date:   03/22/2016

   Filename:         ourpets.css
   Supporting ourpets.htm
*/


   /*Header Styles*/
   
   /*Body Styles*/
body{
	background-color:chocolate;
}
   
   /*Nav Style*/

nav{
	float:left;
	font-size:20px;
}

/*article styles*/

article1{
	text-align:center;
	font-size:25px;
	
}
  /*footer Style*/

footer{
	text-align:center;
	border-bottom:solid 2px;
	border-top:solid 2px;
	font-style:italic;
}
   