* {
	text-align: center;
	vertical-align: center;
	float: center;
	transition: 10s ease-in-out;
}
/*setting the base of everything*/

*:hover {
	transition: 100s ease-in-out;
	border-radius: 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999%;
	transform: rotate(99999deg);
	transition: 1s ease-in-out;
}
/*setting the base of everything (while being hovered over) to SPIN!*/

body {
	background-image: url("http://preview.turbosquid.com/Preview/2014/08/01__17_56_46/grass2.jpga0a7fc5e-5762-4ca0-898f-a1ef0807f42dOriginal.jpg");

}
/*background image*/

div {
	border: 2px solid black;
	border-radius: 20px;
	color: black;
	padding: 5%;
}
/*giving a base div*/

#firstbox {
	height: 80%;
	width: 80%;
	background-color: green;
	clear: both;
	padding: 10%;
}
/*1st box base*/

#secondbox {
	height: 76%;
	width: 76%;
	background-color: #00FF62;
	clear: both;
	padding: 10%;
}
/*2nd box base*/

.thirdbox {
	height: 72%;
	width: 72%;
	background-color: #62FF00;
	padding: 10%;
}
/*3rd box base*/

#header {
	background-color: #DDE417;
	padding: 40px 5px 40px 5px;
	position: fixed;
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 1%;
}
/*header base*/

#container {
	border: 20px dashed #654321;
	padding: 5%;
}
/*container base*/

a {
	text-decoration: none;
	font-family: Papyrus;
	font-size: 3em;
}
/*base for links*/

ul > li {
	border: 1px solid black;
	padding: 1px 10% 1px 10%;
	width: 5%;
	margin: 5%;
	border-radius: 3px;
	text-decoration: none;
	list-style-type: none;
	display: inline;
	color: #330033;
}
/*base code for li's directly inside of ul's*/

ul > li:hover {
	background-color: #FFCCCC;
}
/*base code for hovering over the above mentioned object*/

img {
	width: 100%;
}