body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #ffcccc, #ffe6e6);
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.container {
  padding: 40px;
}

h1 {
  font-size: 3em;
  color: #cc3366;
  margin-bottom: 10px;
}

.countdown-start {
  font-size: 2em;
  color: #99004d;
  animation: fadeIn 3s;
}

p {
  color: #660033;
  font-size: 1.2em;
}

#countdown {
  font-size: 2em;
  margin: 20px 0;
  color: #99004d;
}

.gallery img {
  width: 200px;
  height: auto;
  margin: 10px;
  border-radius: 15px;
  box-shadow: 0 0 10px #ff66b3;
}

.quotes p {
  font-style: italic;
  margin-top: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
#preloader {

  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#countdown-numbers {
  font-size: 5rem;
  color: #cc0066;
  font-weight: bold;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
