body {
    
    background-color: ; /* Light pink background */
    overflow: ; /* Prevents scrollbars */
}

.flower-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows clicking through flowers */
}

.flower {
    position: fixed; 
    background-color: #ffb7c5; /* Petal color */
    border-radius: 150% 0 150% 0; /* Shape of a petal */
    animation: fall linear infinite;
}

/* Keyframes for falling down and swaying */
@keyframes fall {
    0% {
        transform: translate(0, -10vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(100px, 100vh) rotate(360deg);
        opacity: 0;
    }
}
/* CSS Document */

