
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #ffdcc2, #ffd1dc);
}



body {
  min-height: 100vh;
}





body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #ffffff;
  font-family: 'Dancing Script', cursive;
}

.overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12px;
  min-height: 100vh;
  box-sizing: border-box;
  text-align: center;
}

.language-switch {
  margin-bottom: 12px;
}

.language-switch button {
  font-size: 1.1em;
  margin: 0 5px;
  padding: 6px 10px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.welcome {
  font-size: 1.4em;
  color: #b91c57;
  line-height: 1.4em;
  margin-bottom: 15px;
  padding: 0 10px;
}

.image-container {
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.centerpiece {
  max-width: 85%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0,0,0,0.15);
}

.countdown {
  font-size: 1.2em;
  margin: 15px 0;
  font-weight: 600;
}

.event-date {
  font-size: 1.3em;
  color: #b91c57;
  margin-bottom: 6px;
}

.event-time {
  margin: 8px 0;
  font-size: 1.2em;
  color: #444;
  font-weight: 600;
}

button {
  padding: 8px 18px;
  font-size: 0.95em;
  background-color: #d81b60;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;
  margin-top: 10px;
}

button:hover {
  background-color: #b0134e;
}

.names {
  font-size: 2em;
  color: #b91c57;
  margin-top: 15px;
  font-weight: bold;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.centerpiece, .names, .countdown, .event-date, .event-time, .welcome, .language-switch, a, button {
  animation-delay: 0.2s;
}

.countdown span {
  display: inline-block;
  margin: 0 3px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
}

.countdown span.animate {
  transform: scale(1.2);
}
