:root {
	--text-main: #ffffff;
	--text-muted: #e5e7eb;
	--accent: #e78967;
}

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

html,
body {
	margin: 0;
	padding: 0;
}

body {
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Roboto", Arial, sans-serif;
	color: var(--text-main);
	background:
		linear-gradient(
			180deg,
			rgba(0,0,0,0.55),
			transparent
		),
		var(--background-url) no-repeat center / cover;
}

main {
	width: 100%;
	max-width: 1100px;
	padding: 0 24px;
	text-align: center;
}

h1 {
	margin: 0 0 20px;
	font-size: clamp(34px, 7vw, 88px);
	font-weight: 900;
	letter-spacing: -0.03em;
}

.content {
	max-width: 720px;
	margin: 0 auto;
	font-size: clamp(16px, 2.5vw, 22px);
	line-height: 1.75;
	color: var(--text-muted);
}

#social {
	margin-top: 36px;
}

#social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 6px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
	transition: transform 0.2s ease, background 0.2s ease;
}

#social a i {
	color: #ffffff;
	font-size: 18px;
}

#social a:hover {
	transform: translateY(-4px);
	background: var(--accent);
}

@media (max-width: 640px) {
	h1 {
		margin-bottom: 16px;
	}

	#social {
		margin-top: 28px;
	}
}