body {
	margin: 0px;

	width: 100vw;
	height: 100vh;

	display: flex;
	justify-content: center;
	align-items: center;
	background: #18181b;
}

canvas, #game-canvas {
	max-width: 100vw;
	max-height: 100vh;
	width: 100vw;
	height: 100vh;
	display: block;
	margin: 0 auto;
	box-sizing: border-box;
}

@media (max-width: 700px) {
	canvas, #game-canvas {
		width: 100vw !important;
		height: 60vh !important;
		max-width: 100vw !important;
		max-height: 60vh !important;
	}
	body {
		padding: 0;
	}
}
