@font-face {
	font-family: "Sonic2";
	src: url("/assets/fonts/sonic-2-system-lowercase.otf")
}

img { 
	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+                           */
}

body {
	font-family: Sonic2;
	color: white;
	background-color: white;
	text-shadow: -1px -1px 0 black,
		-1px 1px 0 black,
		1px -1px 0 black,
		1px 1px 0 black;
}

a:link {
	color: #4bef4a;
	font-style: italic;
}