body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(to bottom right, #e0f7ff, #fefefe);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #333;
}

.container {
  text-align: center;
  background-color: white;
  padding: 2rem 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  width: 90%;
  position: relative;
}

.top-banner {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.bottom-banner {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-top: 2rem; /* 👈 Adds space above the bottom image */
}

.title {
  font-size: 2.2rem;
  color: #4da6ff;
  margin-top: 1rem;
}

.subtitle {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.name {
  font-family: 'Brush Script MT', cursive;
  font-size: 2rem;
  color: #555;
}

.date-time,
.location {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

@media (min-width: 600px) {
  .buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  padding: 12px 20px;
  background-color: #4da6ff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.btn:hover {
  background-color: #3399ff;
}

.btn.secondary {
  background-color: #d0eaff;
  color: #333;
}

.btn.secondary:hover {
  background-color: #b8dcf8;
}
