:root {
	--bg: #f0f0ec;
	--fg: #000;
	--link: #0000ee;
}

html,
body {
	font-family: "Space Mono", monospace;
	background-color: var(--bg);
	color: var(--fg);
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.centered {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: center;
	padding: 0 20px;
	box-sizing: border-box;
}

h1 {
	font-size: clamp(2rem, 8vw, 3rem);
	margin: 0 0 10px 0;
}

h2 {
	font-size: clamp(1rem, 4vw, 1.5rem);
	margin: 0 0 20px 0;
	font-weight: normal;
	color: #333;
}

.links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}

.links a {
	text-decoration: none;
	color: var(--link);
	font-size: clamp(0.9rem, 3vw, 1rem);
	transition: color 0.2s ease;
}

.links a:hover {
	color: #555;
}
