body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Tangerine", cursive;
    background-color: white;
    overflow: hidden;
    font-size: 1rem;
}

.save-the-date-card {
    text-align: right;
    padding: 2rem;
    max-width: 90%;
    color: white;
}

.save-the-date-card h1 {
    font-size: 7rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.save-the-date-card .date {
    font-size: 4rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.save-the-date-card .cta-message {
    font-size: 3rem;
    font-style: italic;
}

.fading-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    object-position: left center;
    opacity: 0;
    filter: brightness(0.75);
    animation: fadeInImage 0.5s forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .save-the-date-card h1 {
        font-size: 3rem; /* Smaller heading on small screens */
    }
    .save-the-date-card .date {
        font-size: 2rem; /* Smaller date on small screens */
    }
}