.rsvp-container {
    max-width: 720px;
    margin-top: 60px;
}

.rsvp-container h3 {
    font-family: "Playfair Display", serif;
}

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

.rsvp-animate {
    animation: fadeUp 0.6s ease both;
}

.rsvp-animate-delay {
    animation-delay: 0.2s;
}