body,
html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	user-select: none;
}

* {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
}

*::-webkit-scrollbar {
	display: none;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

#game {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	background: #000;
	width: 100vw;
	height: 100vh;
}

#game canvas {
	transition: transform 0.3s ease;
	transform-origin: center center;
}
