body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #ffe0f0, #ffb3c6);
  font-family: 'Comic Sans MS', cursive, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.invite-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  max-width: 400px;
  animation: fadeIn 1s ease-in-out;
}

h1 {
  color: #ff69b4;
  margin-bottom: 10px;
}

.intro {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.details p {
  margin: 8px 0;
  font-size: 15px;
}

.rsvp {
  margin-top: 20px;
  font-weight: bold;
  color: #d63384;
}

.footer {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
