body {
	margin: 0;
	padding: 0;
  -webkit-perspective: 400; 
  -webkit-perspective-origin: 50% 30%;
  overflow: hidden;
	background-color: black;
}
@-webkit-keyframes spinanimation {
  0% {
    -webkit-transform: rotateY(0);
  }
  50% {
  -webkit-transform-delay:2s;
  }
  100% {
    -webkit-transform: rotateY(360deg);
  }
}
#canvas1 {
  position: relative;
  width: 800px;
  height: 400px;
	background-color: black;
  z-index: 100;
}
#container {
  position: relative;
  margin: 0px auto;
  width: 800px;
  height: 400px;
  background-color: black;
}