@charset "UTF-8";
@import url("../webfonts/Steelworks_Vintage_Demo/stylesheet.css");

html, body {
	margin: 0;
	padding: 0;
	text-align: center;
	min-height: 100%;
}

body {
	background-image: url(../images/car-dust.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}

.title {
	font-family: 'Steelworks Vintage Demo';
	font-size: 5em;
	text-align: center;
	position: static;
	margin: 0%;
	padding-top: 2%;
}

@font-face {
	font-family: 'Steelworks Vintage Demo';
	src: url('Steelworks Vintage Demo.tff') format('truetype');
}

.mag {
	font-family: 'advent-pro';
	font-style: oblique;
	text-align: center;
	margin: 0%;
	padding-top: 0px;
	padding-bottom: 2%;
	position: static;
}
	
nav {
	background-color: rgba(0,0,0,1.00);
	height: 52px;
	position: relative; /* This gives our z-index something to hook on to */
	z-index: 1000; /* This makes sure our navigation appears over the top of the foreground duck image */
}

/* This is the base of our bulleted list */
nav ul {
	padding: 0px;
	margin: 0px;
	list-style-type: none; /* Hide those bullets */
	list-style-image: none; /* NO REALLY, hide those bullets */
}

nav ul li {
	display: block; /* Turns our list item into a box to contain our buttons */
	width: 16.666667%; /* We want our buttons to take up equal parts of the navigation area. Because we have four buttons, then the width must be 25% */
	height: 40px; /* Match our <nav> tag height of 65px */
	float: left; /* Float them left so they go horizontally across the page */
}

/* Here is the actual button style itself */

nav ul li a {
	display: block; /* Makes <a> tag fill 100% of the width of it's containing <li> */
	height: 40px; /* This is really 65px, but I have subtracted the padding-top from this number in order to horizontally balance the type */
	text-align: center;
	background-color: rgba(0,0,0,1.00);
	color: rgba(255,255,255,1.00);
	text-decoration: none;
	font-family: 'advent-pro';
	font-size: 1.5em;
	font-weight: bold;
	padding-top: 12px; /* This padding vertically centeres the type */	
}
	
nav ul li a:hover {
	background-color:rgba(113,170,222,1.00);
	opacity: 0.9;

	/* Shadow border 
	border-right-width: .5px;
	border-right-style: dotted;
	border-right-color: rgba(152,253,255,1.00);	
	
	 Highlight border 
	border-lefft-width: .5px;
	border-left-style:dotted;
	boarder-left-color: rgba(152,253,255,1.00);*/
}