/*
 * This file is released into the public domain.
 * See: https://creativecommons.org/publicdomain/zero/1.0/
 */

#canvas {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 50vh;
	left: 50vw;
	transform: translate(-50vw, -50vh) scale(1.1);
}

#canvas > * {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
