BODY
{
	background: #000;
	-webkit-background-size: 100% 100%;
	overflow: hidden;
}
h1{color:white;}
audio { display:none;}
#container
{
	position: center;
	text-align: center;
	left: 50%;
	top: 45%;
	-ms-transform: translateY(50%);
  transform: translateY(50%);
}


@-webkit-keyframes walk 
{
	0% 
	{
		-webkit-transform: rotateZ(0deg);
	}
		
	50% 
	{
		-webkit-transform: rotateZ(180deg);
	}
	
	100% 
	{
		-webkit-transform: rotateZ(360deg);
	}
}


.walk
{
	-webkit-animation-name: walk;
	-webkit-animation-duration: 10.0s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-webkit-perspective: 6000px;
	text-align: center;
	color: #999;
	font-size: 16px;
	font-family: arial;
	font-weight: bold;
	border-radius: 3px;
	display: inline-block;
	border: 0px solid #999;
}

