@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC&display=swap');

html, body{
	overflow: hidden;
	background: #000;
	font-family: 'Lato';
	padding: 0px;
	margin: 0px;
}

#canvas{
	cursor: crosshair;
	z-index: 2;
	position: absolute;
	top: 0; left: 0;
}

#overlay{
	background: radial-gradient(ellipse at center, rgba(0,0,0,.0) 10%, rgba(0,0,0,.8) 80%, rgba(0,0,0,1) 90%, rgba(0,0,0,1) 100%);
	z-index: 3;
	position: absolute;
	top:0;
	left:0;
	height: 100%;
	width: 100%;
}

#bg_glow{
	z-index: 1;
	position: absolute;
	top:0;
	left:0;
	height: 100%;
	width: 100%;
}

#info{
	z-index: 4;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 5px;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-family: 'Playfair Display SC';
	font-weight: bold;
	font-size: 72px;
	color: #000000;
	text-shadow: 0 0 15pt #00ffff;
}

#overlay:hover{
	cursor: pointer;
}

#fps{
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 5;
}

