:root {
	font: 10px Arial, sans-serif;
	--hue: 100;
	--saturation: 30%;
	--shade1: 40%;
	--background: #252525;
}
@font-face {
	font-family: topspeed;
	src: url(topspeed.TTF);
}

* {
	text-decoration: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	background-color: var(--background);
	color: hsl(var(--hue) var(--saturation) var(--shade1));
}
