body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background: url("https://via.placeholder.com/1600x900") no-repeat center
    center fixed; /* Background image */
  background-size: cover;
  color: white;
  text-align: center;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  display: flex;
  justify-content: center;
  align-items: center;
}
.content {
  max-width: 700px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-align: center;
}
h1 {
  font-size: 48px;
  margin: 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 2s ease-in-out;
}
p {
  font-size: 20px;
  margin-bottom: 30px;
  animation: fadeIn 3s ease-in-out;
}
.countdown {
  font-size: 36px;
  font-weight: bold;
  margin: 20px 0;
  animation: fadeIn 4s ease-in-out;
}
.contact-info {
  margin-top: 30px;
  font-size: 16px;
  color: #ddd;
}
.contact-info a {
  color: #ff5733;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info a:hover {
  color: #fff;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
