body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

/* Container Styling */
.coming-soon-container {
  text-align: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

/* Heading and Paragraph */
h1 {
  font-size: 2.5rem;
  color: #333333;
}

p {
  font-size: 1.2rem;
  color: #666666;
}

/* Countdown Timer */
#countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#countdown div {
  font-size: 1.5rem;
}

#countdown span {
  font-weight: bold;
}

/* Email Signup Form */
.email-signup {
  margin-top: 20px;
}

.email-signup input {
  padding: 10px;
  font-size: 1rem;
}

.email-signup button {
  padding: 10px;
  font-size: 1rem;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}

.email-signup button:hover {
  background-color: #0056b3;
}