/*
   Homework 7-4
   contact Style Sheet

   Filename:  cstyles.css
   Supporting Files: 

*/



/* body styles */
body {
	width: 98%;
	min-width: 1100px; 
	background-image: url(back.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

body {
	border: 4px dotted yellow;
	
}

/* Header Styles */

header img{
   width: 100%;

 
}

header nav {
   position: fluid;
   top: 190px;
   width: 100%;
   z-index: 2;
}

header nav ul li {

   display: block; 
   float: left; 
   width:13%;
   margin: 0px 5px;
   text-align: center;
}

header nav ul li a {
   display: block;
   border: 1px solid red;
   width: 100%;
   background-color: black;
   color: white;
}

header nav ul li a:hover {
   color: red;
}

/*heading style */
h1 {
	position: fluid;
	display: block;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 40pt;
	color: red;
	margin-top: 50px;
	text-align: center;
	font-style: italic;
	text-shadow: 2px 2px black;
}
/* paragraph style */

section p {
	
	font-size: 18pt;
	margin-left: 60px;
	margin-right: 60px;
}

/* table style */

table td {
	padding-left: 10px;
}

/* footer */
footer {
	display: block;
	height: 20px;
	width: 90%;
	border-top-style: dotted;
	border-top-color: gray;
	padding: 10px;
}