:root {
	--text: #f04f78;
	--background: #2e222f;
	--primary: #f04f78;
	--secondary: #f79617;
	--accent: #fdcbb0;
}

body {
	margin: 0;
	padding: 2rem;
	min-height: 100vh;
	background-color: var(--background);
	color: var(--text);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hero {
	max-width: 800px;
	margin: auto;
}

.social-links {
	display: flex;
	gap: 2rem;
	justify-content: center;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.social-icon {
	font-size: 2.5rem;
	color: var(--primary);
	transition: color 0.3s ease;
	text-decoration: none;
}

.social-icon:hover {
	color: var(--accent);
}

h1 {
	color: var(--primary);
	margin-bottom: 0.5rem;
}

h2 {
	color: var(--secondary);
	margin-top: 0;
}