/*
   New Perspectives on HTML
   Final Project Website Style Sheet
   Author: Taylor Gentry
   Date:   2/1/2016

   Filename:  final.css
   Supporting Files: finalabout.htm, finalschedule.htm, finalmerch.htm, finalcontact.htm, final.htm
*/

html {
	background-color: black;
}


header {
	text-align: center;
	font-size: 50px;
	margin-left: 33.3%;
	width: 33.3%;
	color: blue;
}

section {
	text-align: center;
	font-size: 30px;
	margin-left: 33.3%;
	width: 33.3%;
	color: red;
}

nav {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

ul {
    list-style-type: none;
    overflow: hidden;
    background-color: blue;
}

li {
	display: inline;
}

li a {
    display: inline-block;
    color: white;
	padding: 10px;
    text-decoration: none;
}

li a:hover {
    background-color: red;
}

footer {
	text-align: center;
	font-size: 15px;
	clear: both;
	color: blue;
}

form {
	color: white;
	text-align: center;
}

form p {
	text-align: center;
}

table {
	text-align: center;
}

input:focus, select:focus, textarea:focus {
	background-color: rgb(220, 225, 220);
}

input:focus:valid {
	background: rgb(220, 225, 220);
}

input:focus:invalid {
	background: rgb(255, 232, 233);
}