body {
	margin: 0px;
	position: relative;

	width: 100vw;
	height: 100vh;

	display: flex;
	justify-content: center;
	align-items: center;

	background-image: url(../images/page.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

canvas {
	background-color: transparent;
}

.game-back-link {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 10;
}

.game-back-link a {
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none;
	font-size: 14px;
	padding: 8px 12px;
	background: rgba(92, 64, 51, 0.8);
	border-radius: 8px;
	transition: background 0.2s;
}

.game-back-link a:hover {
	background: rgba(184, 134, 11, 0.9);
	color: #fff;
}

.logo {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 1;
	width: 100px;
	height: 100px;
	background-image: url('../images/favicon.webp');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}