@font-face {
	font-family: "Brandon Light";
	src: url("../res/res.woff2");
}

* {
	margin: 0;
	padding: 0;
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
}

html, body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #000;
}

.bg {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	mix-blend-mode: overlay;
	filter: invert(100%);
}

img, canvas {
	width: 91vmin;
	height: 13vmin;
}

.nav {
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: clamp(8px, 1.2vmin, 14px);
	margin-top: clamp(16px, 2.4vmin, 26px);
	font-family: "Brandon Light", "Segoe UI", Helvetica, Arial, sans-serif;
}

.nav-btn {
	display: inline-block;
	padding: clamp(7px, 1.05vmin, 11px) clamp(17px, 2.5vmin, 26px);
	font-size: clamp(10px, 1.5vmin, 15px);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-indent: 0.18em;
	line-height: 1;
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none;
	white-space: nowrap;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.62);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 2px 16px rgba(0, 0, 0, 0.45);
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-btn:hover {
	color: #000;
	background: rgba(255, 255, 255, 0.94);
	border-color: rgba(255, 255, 255, 0.94);
	transform: translateY(-1px);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.nav-btn:active {
	transform: translateY(0);
}

.nav-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.hint {
	z-index: 1;
	color: #000;
	mix-blend-mode: overlay;
	filter: invert(100%);
	position: fixed;
	bottom: 2.75vmin;
	font-family: "Brandon Light";
	font-size: 2.75vmin;
	letter-spacing: 0.2vmin;
	font-weight: bold;
}
