/* Style sheet created by: Student's First Name Student's Last Name, Today's Date */

/* Style for body specifies a background color */
body {
	background-color: #B8B894;
}

/* Style for the container centers the page and specifies the width */
#container {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

/* Style for the header specifies top margin and center aligns content */
header {
	margin-top: 0.2em;
	text-align: center;
}

#gradient1 {
	border: solid #000000;
	height: 5em;
	margin-bottom: 2em;
	background: -moz-linear-gradient(to right, #000066, #99FF99 25%); /* mozilla */
	background: -o-linear-gradient(to right, #000066, #99FF99 25%); /* opera */
	background: -webkit-linear-gradient(to right, #000066 #99FF99, 25%); /* chrome, safari */
	background: linear-gradient(to right, #000066, #99FF99 25%); 
}

#gradient2 {
	border: solid #000000;
	height: 5em;
	margin-bottom: 2em;
	background: -moz-linear-gradient(to left, #000066, #99FF99 10%); /* mozilla */
	background: -o-linear-gradient(to left, #000066, #99FF99 10%); /* opera */
	background: -webkit-linear-gradient(to left, #000066 #99FF99, 10%); /* chrome, safari */
	background: linear-gradient(to left, #000066, #99FF99 10%); 
}

#gradient3 {
	border: solid #000000;
	height: 5em;
	margin-bottom: 2em;
	background: -moz-radial-gradient(#006699, #00CC00, #FF0000); /* mozilla */
	background: -o-radial-gradient(#006699, #00CC00, #FF0000); /* opera */
	background: -webkit-radial-gradient(#006699, #00CC00, #FF0000); /* chrome, safari */
	background: radial-gradient(#006699, #00CC00, #FF0000); 
}

#gradient4 {
	border: solid #000000;
	height: 5em;
	margin-bottom: 2em;
	background: -moz-repeating-radial-gradient(#006699, #00CC00 10%, #FF0000 15%); /* mozilla */
	background: -o-repeating-radial-gradient(#006699, #00CC00 10%, #FF0000 15%); /* opera */
	background: -webkit-repeating-radial-gradient(#006699, #00CC00 10%, #FF0000 15%); /* chrome, safari */
	background: repeating-radial-gradient(#006699, #00CC00 10%, #FF0000 15%);
}

#gradient5 {
	border: solid #000000;
	height: 5em;
	margin-bottom: 2em;
	background: -moz-linear-gradient(to top left, #FFFF00, #FF6600, #006699, #3333FF); /* mozilla */
	background: -o-linear-gradient(to top left, #FFFF00, #FF6600, #006699, #3333FF); /* opera */
	background: -webkit-linear-gradient(to top left, #FFFF00, #FF6600, #006699, #3333FF); /* chrome, safari */
	background: linear-gradient(to top left, #FFFF00, #FF6600, #006699, #3333FF);
}

/* Style for the footer specifies font size, text alignment, and top margin */
footer {
	font-size: .70em;
	text-align: center;
	margin-top: 2em;
}