body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: #fff9f3;
}

.flowerBehindProfile {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-43%, -40%);
    width: 100%;
}

.flowerBehindProfile img {
    width: 32%;
    height: auto;
    object-fit: contain;
    opacity: 80%;
}



.falling-petal {
    position: absolute;
    top: -10vh;
    left: 0;
    width: 40px;
    height: auto;
    pointer-events: none;
    animation: fall linear infinite;
    z-index: 100;
}

/* Falling animation - moves from top to bottom and fades out */
@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        /* Start at the top */
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        /* Fall to bottom */
        opacity: 0;
        /* Fade out as it reaches the bottom */
    }
}

/* Sway animation - gentle side-to-side movement */
@keyframes sway {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(-15px);
    }
}