/*
   New Perspectives on HTML and CSS
   Final Project
   Form Main Style Sheet
   Author: Earl Davis



*/

/*body styles */
body {
	background-color: rgb(255, 212, 128);
	position: relative;
	width: 100%;
	min-width: 1000px;
	max-width: 1400px;
	
	-o-background-size: contain;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

/* header styles */
header h1 {
	font-family: "Times New Roman", Times, serif;
}

header img {
	display: block;
	border-radius: 20;
	width: 20%;
	float: right;
}

body img{
	border-radius: 150px;
	border: 1px solid #333300;
	float:right;
	
	-moz-box-shadow: 10px 10px 5px rgb(102, 51, 0);
	-webkit-box-shadow: 10px 10px 5px rgb(102, 51, 0);
	box-shadow: 10px 10px 5px rgb(102, 51, 0);
}


nav {
display: block;
width: 100%;
}

section nav {
font-size: 0.9em;
text-align: center;
padding-bottom: 20px;
}


nav ul {
list-style-type: none;
margin: 0px;
padding: 0px;
font-size: 0.8em;

}

nav ul li {
display: block;
float: left;
width: 15.6%;
height: 20px;
text-align: center;
border: 1px solid #333300;
background-color: #996600;
line-height: 1.5em;
margin: 0px 2px 2px 0px;
}

nav ul li a {
	color: white;
}