* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
		Arial, sans-serif;
	background: #e6e6e6;
	color: #293f47;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	text-align: center;
	padding: 20px;
}

.container {
	max-width: 600px;
	background: #f4f4f4;
	border-radius: 20px;
	padding: 40px 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

img.logo {
	max-width: 300px;
	margin-bottom: 20px;
}

h1 {
	font-size: 2rem;
	margin-bottom: 10px;
	font-weight: 600;
}

p {
	font-size: 1rem;
	margin-bottom: 30px;
	color: #555;
}

#countdown {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 30px;
	color: #293f47;
}

.contact-info {
	font-size: 1rem;
	color: #555;
	margin-top: 20px;
	font-style: italic;
}

.contact-info a {
	color: #293f47;
	text-decoration: none;
}

.contact-info a:hover {
	text-decoration: underline;
}

footer {
	font-size: 0.9rem;
	margin-top: 30px;
}

footer a {
	color: #293f47;
	margin: 0 10px;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

@media (max-width: 500px) {
	h1 {
		font-size: 1.5rem;
	}

	#countdown {
		font-size: 1.2rem;
	}
}
