/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	text-align: center;
}

main h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #2563eb;
}

main p {
	font-size: 1.2rem;
	color: #666;
}

/* Footer styles */
footer {
	background-color: #f8fafc;
	border-top: 1px solid #e2e8f0;
	padding: 2rem 0;
	margin-top: auto;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-links {
	display: flex;
	gap: 2rem;
}

.footer-links a {
	color: #64748b;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: #2563eb;
}

.footer-copyright p {
	color: #94a3b8;
	font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
	}

	.footer-links {
		gap: 1rem;
	}

	main h1 {
		font-size: 2.5rem;
	}
}
