html, body {
	height:100%;
	padding: 0px;
	margin: 0px;
	font-size: 15px;
	color: black;
	font-family: Trebuchet MS;
	text-align: center;
	background-image: url(../images/xbackground.png);
	background-position: left bottom;
	background-repeat: repeat;
}

img {
	width: 70%;
	height: 70%;
}

h1 {
	font-weight: 600;
	font-size: 800%;
	letter-spacing: -5px;
	color:#fff;
	text-align:center;
	margin:0 0 15px 0;
	padding: 1%;
	text-shadow:0px 5px 5px black;
	-webkit-animation:shakey .5s ease-in-out alternate;
	-moz-animation:shakey .5s ease-in-out alternate;
	-webkit-animation-delay:4s;
	-webkit-transform:translate3d(0,0,0) transition:all .5s linear;
	-o-transition:all .5s linear;
	-moz-transition:all .5s linear;
	-webkit-transition:all .5s linear;
	-o-transition:all .5s linear;
}

h1:hover,h1:focus {
	-webkit-animation:shakey .25s ease-in-out alternate;
	-moz-animation:shakey .25s ease-in-out alternate;
	-o-animation:shakey .25s ease-in-out alternate;
	-webkit-transform:translate3d(0,0,0);
}

h2 {
	font-weight: 400;
	font-size: 500%;
	letter-spacing:-5px;
	color:#fff;
	text-shadow:0px 5px 5px black;
	-webkit-animation:shakey .5s ease-in-out alternate;
	-moz-animation:shakey .5s ease-in-out alternate;
	-webkit-animation-delay:4s;
	-webkit-transform:translate3d(0,0,0) transition:all .5s linear;
	-o-transition:all .5s linear;
	-moz-transition:all .5s linear;
	-webkit-transition:all .5s linear;
	-o-transition:all .5s linear;
}
h2:hover,h2:focus {
	-webkit-animation:shakey .25s ease-in-out alternate;
	-moz-animation:shakey .25s ease-in-out alternate;
	-o-animation:shakey .25s ease-in-out alternate;
	-webkit-transform:translate3d(0,0,0);
}

a:link, a:visited {
	color: black;
	background-color: transparent;
	text-decoration: none;
}

a:hover {
	color: white;
}

input {
	border: 1px solid; 
}

#player {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 40%;
}

@-webkit-keyframes shakey {
	0% {
		-webkit-transform:rotate3d(0,0,0,0deg)
	}
	25% {
		-webkit-transform:rotate3d(0,0,0,4deg)
	}
	75% {
		-webkit-transform:rotate3d(0,0,0,-4deg)
	}
	100% {
		-webkit-transform:rotate3d(0,0,0,0deg)
	}
}

@-moz-keyframes shakey {
	0% {
		-moz-transform:rotate(0deg)
	}
	25% {
		-moz-transform:rotate(4deg)
	}
	75% {
		-moz-transform:rotate(-4deg)
	}
	100% {
		-moz-transform:rotate(0deg)
	}
}

@-o-keyframes shakey {
	0% {
		-o-transform:rotate(0deg)
	}
	25% {
		-o-transform:rotate(4deg)
	}
	75% {
		-o-transform:rotate(-4deg)
	}
	100% {
		-o-transform:rotate(0deg)
	}
}

div.bantext {
	font-family: Trebuchet MS;
	font-size: 17px;
}