.rain-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: none; /* Hidden by default */
    z-index: 9999; /* Ensure rain is above everything else */
}

.displayRain {
    display: initial; /* Show the rain when the class is added */
}

.raindrop {
    position: absolute;
    font-size: 2rem; /* Heart icon size */
    animation: fall linear infinite;
    z-index: 1;
    color: rgba(255, 0, 0, 0.8); /* Red color for heart */
    transform-origin: center;
}

/* Slow down the falling animation */
@keyframes fall {
    0% {
        transform: translateY(-100vh); /* Start above the screen */
    }
    100% {
        transform: translateY(100vh); /* End below the screen */
    }
}
