.coming-soon {
  height: 100vh;
  width: 100vw;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  animation: fadeEffect 1.5s ease-in-out;
}

.content {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 10px;
  color: #fff;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

p {
  font-size: 1em;
}

.countdown-timer {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.time {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 10px;
}

.time span {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}

.time span:last-child {
  font-size: 1em;
  font-weight: normal;
  margin-top: 5px;
}

/* Fading effect */
@keyframes fadeEffect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Email sign-up form styling */
.email-signup {
  margin-top: 30px;
}

.email-signup form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.email-signup input {
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  width: 250px;
}

.email-signup button {
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  background-color: #ff6600;
  color: #fff;
  cursor: pointer;
}

.email-signup button:hover {
  background-color: #e65c00;
}

p {
  margin-top: 20px;
}
