@charset "utf-8";


/*
	CIS 1406
	Final Project
	Jonnie Jucht
	styles page
	Filename: styles1.css
*/

body, header, nav, footer {
	display: block;
}

html {
	background: rgba(188,164,112,0.8);
	height: 100%;
}
body {
	width: 100%;
	margin: 0px auto;
	text-align: center;
	color: black;
}
header {
	background: url(header.jpg) center center/cover fixed no-repeat;
	color: rgb(251,250,245);
	text-align: center;
	height: 100%;
}
h1 {
	margin-top: 0;
	padding-top: 3%;
	font-family: "Special Elite", system-ui;
	font-weight: 400;
	font-style: normal;
	font-size: 75px;
}

nav li {
	display: inline;
	padding: 5%;
}
nav li a {
	font-size: 20pt;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-style: normal;
	text-decoration: none;
	transition: all 0.5s linear;
	color: inherit;
}
nav {
	background: rgba(255,255,255,0.2);
	padding: 7px;
}
nav a:active, a:hover {
	color: rgb(255,136,77);
	font-size: 35pt;
}

footer {
	font-family: "Special Elite", system-ui;
	font-weight: 400;
	font-style: normal;		
	color: rgb(251,250,245);
	font-size: 25pt;
	text-align: center;
	background: url(header.jpg) center center/cover fixed no-repeat;
	padding: 1%;
}

