div#game {
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0px;
	left: 0px;
	overflow: hidden;
}
body {
	margin: 0px;
	background-color: #81c56a;
	font-family: Lato, sans-serif;
	background-image: url(images/road.svg);
}
div#game * {
	--x: 0px;
	--y: 0px;
	position: absolute;
	top: calc(50% - var(--y));
	left: calc(50% + var(--x));
	transform: translate(-50%, -50%);
}
div.suspended {
	color: white;
	position: absolute;
	text-align: center;
	top: 0px;
	left: 0px;
	padding: 40px;
	box-sizing: border-box;
	width: 100vw;
}
