/*
   New Perspectives on HTML and CSS
   Tutorial 
   Case Problem 

   my page Style Sheet
   Author: Cori Smith
   Date:   

   Filename:         citysheet.css
   Supporting ourcity.htm
*/

   /*Header Styles*/
header{
	text-align:center;
	font-size:65px;
	font-family: "Times New Roman", Times, serif;
	padding-left:115px;
}

/*Nav Style*/

nav{
	float:left;
	font-size:20px;
}

/*Article Style*/


/*Body Style*/

body{
	background-image: url("backgroundimage.png");
    background-repeat: no-repeat;
	background-size:cover;
	
	
}


/*footer Style*/


/*Table Style*/

table{
	text-align:center;
	font-family:"Arial Black", Gadget, sans-serif;
	color:green;
	background-color: rgba(255, 255, 255, 0.7);
}
/*Button Style*/

button{
	margin:auto;
	display:block;
	text-align:center;
}
/*image Style*/

img {
    opacity: 0.9;
    filter: alpha(opacity=40); /* For IE8 and earlier */
}


