

 html,body {
  width: 100%;
  height:100%;
  margin:0;
  padding: 0;
  background-color: #000000;
}



#intro {
	
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	
}


svg{
	height: 100%;
	width: 100%;
}


#Spiral {

	transform-origin: 50% 50%;
	-webkit-animation: rotation .4s infinite linear;
	}
	
	@-webkit-keyframes rotation {
			from {
					-webkit-transform: rotate(0deg);
			}
			to {
					-webkit-transform: rotate(359deg);
			}
}


#eye {


	background-image: url(img/eye3-blink.gif);
	background-size: 100%;
	width: 30px;
	height: 30px;
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 0 20px #333);
	

	
}	
	

