body {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90vh;
	width: 100vw;
	flex-direction: column;
	gap: 0.625rem;
	margin: 0;
	padding: 0;
	overflow: none;
	background-color: #0a0a0a;
	color: #f2f2f0;
}

body > * {
	margin: 0;
	padding: 0;
}

body > h2 {
	font-family: "Stack Sans Headline", sans-serif;
	font-weight: 600;
	font-size: max(40px, 2.375rem);
	letter-spacing: -0.01em;
	text-align: center;
	color: #f2f2f0;
}

body > .former-name {
	font-family: Georgia, serif;
	font-size: 1rem;
	font-weight: 500;
	font-style: italic;
	color: #999;
	margin-top: -0.3125rem;
}

body > .hero {
	width: min(280px, 70vw);
	border-radius: 0.5rem;
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
	filter: brightness(0.85) saturate(1.05);
}

body > .tagline {
	font-family: Georgia, serif;
	font-size: 1.2rem;
	font-weight: 500;
	color: #cfcfcf;
	margin-top: 0.3125rem;
}

footer {
	position: absolute;
	bottom: 20px;
	font-family: Georgia, serif;
	text-align: center;
	padding: 0 1.5rem;
}

footer > .legal {
	font-size: 0.8rem;
	font-weight: 500;
	color: #e6e6e6;
	margin-bottom: 0.2rem;
}

footer > .credit {
	font-size: 0.7rem;
	font-weight: 500;
	color: #777;
}

footer a {
	color: #9db4ff;
}

footer a:hover {
	opacity: 0.6;
}

@media (max-width: 768px) {
	body {
		height: 90vh;
	}

	body > h2 {
		font-size: 1.75rem;
		padding: 0 1rem;
	}

	body > .hero {
		width: min(200px, 70vw);
	}

	body > .tagline {
		font-size: 1.125rem;
	}

	footer > .legal {
		font-size: 0.75rem;
	}

	footer > .credit {
		font-size: 0.65rem;
	}

	footer {
		bottom: 16px;
	}
}