/* 
	NBA Statistics CSS
	Filename: Home.css

	Author: Brandon Nisperos
	Date: 1/22/16

*/


/* Body Styles */

body {
	background-color: gold;
	font-family: 'Comic Sans MS', cursive;
}

/* Heading Styles */

img.Curry {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

h2 { 
	background-color: white;
	color: blue;
	text-align: center;
}

/* Aside Styles */

aside h1 {
	Background-color: red;
	color: black;
	font-size: 1.5em;
	text-align: center;
} 

/* Section Styles */

section {
	background-color: blue;
	color: white;
	text-align: center;
}

article {
	font-size: 1.2em;
}

/* Footer Styles */

footer address {
	background-color: gold;
	color: black;
	text-align: center;
} 

/* Navigation List Styles */

nav ul {
	text-align: center;	
}

li {
	display: inline;
	font-size: 2em;
	padding: 0.2em;
	
}

nav li:hover {
	background-color: white;
}

/* Figure Styles */

figure {
	background-color: red;
	color: black;
	font-size: 2em;
	padding: 2em;
	text-align: center;

	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
}

figure img {
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;

	-moz-box-shadow: rgba(0, 0, 0, 0.6) 20px 20px 25px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.6) 20px 20px 25px;
	box-shadow: rgba(0, 0, 0, 0.6) 20px 20px 25px;

	section#
}

/* Table Styles */

table.schedule thead {
	background-color: red;
	font-size: 1.5em;
}

table.schedule col.firstCol {
	background-color: red;
}

table.schedule tbody {
	font-size: 0.9em;
}

/* Form Styles */

legend {
	background-color: red;
	border: 1px solid white;
}

fieldset {
	background-color: blue;
	border: 1px solid white;
}

/* Input Styles */

input#state {
	width: 30px;
}

input#zipcode {
	width: 50px;
}

/* Text Area Styles */

textarea {
	font-size: 0.9em;
	height: 100px;
	width: 50%;
}

/* Button Styles */

input[type="Submit"], input[type="Reset"] {
	height: 30px;
	width: 150px;
}

/* Validation Styles */

input:focus, select:focus, textarea:focus {
	background-color: silver;
}

/* Multimedia Control Styles */

audio {
	background-color: red;
	width: 40%;
}