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;
}

.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;
}

.cw-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	padding: 0.75rem 1rem;
	background: rgba(12, 12, 12, 0.94);
	border-top: 1px solid #333;
	font-family: system-ui, sans-serif;
	font-size: 0.85rem;
	color: #e8e4dc;
}
.cw-cookie-inner {
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	justify-content: space-between;
}
.cw-cookie-text {
	margin: 0;
	flex: 1 1 220px;
	line-height: 1.45;
}
.cw-cookie-text a {
	color: #e8c96a;
	text-decoration: underline;
}
.cw-cookie-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.cw-cookie-btn {
	padding: 0.4rem 0.75rem;
	border-radius: 4px;
	border: 1px solid #555;
	background: #222;
	color: #eee;
	cursor: pointer;
	font-size: 0.78rem;
}
.cw-cookie-btn-primary {
	border-color: #c9a84c;
	background: #2a2418;
	color: #f5e6b8;
}