@-webkit-keyframes pulse {
  0% { box-shadow: 0px 0px 5px rgba(230, 72, 132, 0); }
  50% { box-shadow: 0px 0px 5px rgba(230, 72, 132, 0.5); }
  100% { box-shadow: 0px 0px 5px rgba(230, 72, 132, 0); }
}
.circle {
	position: absolute;
	background-color:transparent;
	width:200px;
	height:200px;
	border-radius:100px;
/*	-webkit-animation: pulse 1s linear 1s infinite; */
}
img {
	position: absolute;
}
body {
	margin: 0;
 	background: #eaeaea;
}
#center {
	width: 200px;
	height: 200px;
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 100;
}
video { 
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background: url("") no-repeat;
	background-size: cover; 
	-webkit-transition: 0.3s opacity;
	transition: 0.3s opacity;
	opacity: 0.1;
}
.stopfade {
	opacity: 0.7;
}
/*
@media all and (max-device-width: 800px) {
	body { background: url("../gfx/t2-720-blur.png") #000 no-repeat center center fixed; background-size: cover; }
	video {display: none;}
}
*/