/*css file copyright 2014 Rod Vaughn all rights reserved*/

body {
    background: url(../images/bg.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	font-family: Verdana, sans-serif;

}

h1 {
	font-size: 16px;
	color: #a67e47;
	margin: 30px 0;
}

h2 {
	color: #a67e47;
}

#container {
	
	border: 1px solid gray;
	background-color: white;
	border-radius: 6px;
	opacity: 0.7;
	margin: 20px auto;
	padding: 40px;
	width: 75%;
	
}

#navigation {
	text-align: center;
	border-bottom: 1px solid gray;
}

#navigation ul {
	list-style: none;
	
}

#navigation li {
	display: inline-block;
	background-color: #202429;
	padding: 8px 12px;
	border-radius: 6px;
}

#navigation li:hover {
	background-color: gray;
}

#navigation a {
	text-decoration: none;
	color: white;
	
}

#navigation a:hover {
	text-decoration: none;
	color: black;	
}

#footer {
	border-top: 1px solid gray;
	text-align: center;
	font-size: 12px;
	margin: 20px 0;
	padding-top: 30px;
}