@font-face{
	font-family:"VT323";
	src:url(../fonts/VT323-regular.ttf);
}

body{
	background:black;
}

#container{
	position: fixed;
	left: 50%;
	top:50%;
	margin-left: -400px;
	margin-top:-400px;
	border:4px solid white;
	width:800px;
	height:800px;	
}

#container.animation{
	animation: .1s container_animation;
}

@keyframes container_animation{
	0%{
		transform: rotate(0deg);
	}
	40%{
		transform: rotate(-1deg);
		border-color: red;
	}
	80%{
		transform: rotate(1deg);
	}
	100%{
		transform: rotate(0deg);
	}
}

#surface{
	cursor: crosshair;
}