@font-face {
	font-family: Fixedsys;
	src: url(FSEX302.ttf);
}

html, body {
	overscroll-behavior: none;
}

body {
	background-color: #000;
	text-align: center;
	margin: 0;
	font-family: Fixedsys;
	font-size: 16px;
	user-select: none;
	overflow: hidden;
	/* https://stackoverflow.com/a/14068216 */
	image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
	image-rendering: -moz-crisp-edges;          /* Firefox                        */
	image-rendering: -o-crisp-edges;            /* Opera                          */
	image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
	image-rendering: pixelated;                 /* Universal support since 2021   */
	image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
	-ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
}

.border {
	border: 1px solid #fff;
}

canvas {
	width: calc(100% - 2px);
	height: calc(100% - 2px);
}

/* Buttons */
.button {
	color: #FFF;
	text-decoration: none;
	padding: 0 2px 0 2px;
	display: inline;
	cursor: pointer;
}

.button:hover {
	filter: brightness(50%);
}

.button:active {
	filter: brightness(25%);
}

/* Button Color */
.buttonGray {
	color: #000;
	background-color: #C0C0C0;
	border: 1px solid #808080;
}