*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	background: #000;
}

body {
	background: linear-gradient(160deg, #0f1e2c 0%, #08131c 55%, #03080d 100%);
	color: #c8d1da;
	font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
}

main {
	text-align: center;
	padding: 2rem;
	max-width: 50rem;
}

h1 {
	font-size: clamp(2.75rem, 11vw, 6.5rem);
	font-weight: 300;
	color: #e5ecf2;
	letter-spacing: 0.04em;
	line-height: 1;
}

.sub {
	margin-top: 1.5rem;
	font-size: clamp(0.75rem, 1.4vw, 1rem);
	font-weight: 400;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #6b7886;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
	}
}
