<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
html, body {
	margin: 0;
	padding: 0;
	background-color: #333;
	color: #fff;
	height: 100%;
}

body.vh {
	font-size: 1.42857vh;
	/*6.65 -- 9.5*/
}
body.vw {
	font-size: 1vw;
}

body {
	overflow: hidden;
}

body.game, body.loading {
	display: flex;
	justify-content: center;
	align-items: center;
}

.engineLoader {
	display: none;
	position: absolute;
	width: 90em;
	height: 4em;
	border-radius: 100em;
	padding: 1em;
	background-color: #444;
	transform: will-change;
	overflow: hidden;
	box-shadow: 0 0 1em #444;
}

body.loading .engineLoader {
	display: initial;
}

body.tools canvas, body.tools img {
	image-rendering: pixelated;
}

.engineLoader div {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border-radius: 100em;
	background-color: #999;
	box-shadow: 0 0 0.8em #999;
	transition: width 1s ease;
}

.screen {
	width: 100em;
	/*height: 100em;*/
	height: 83.78em;
}

.screen:before {
	content: "";
	width: inherit;
	height: inherit;
	position: absolute;
	background-image: url("./tv_small.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50%;
}

.screen #game {
	margin: 9em;
	height: 59.5em;
	width: 81em;
}

#game-deprecated {
	background-color: #000;
	width: 90em;
	height: 90em;
	border: 2em solid #666;
	border-radius: 2em;
	box-shadow: 0 0 4px 0 #000;
	position: relative;
	/*image-rendering: pixelated;*/
}


</pre></body></html>