/* Heart Rain Effect */
#heart-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Background-ish but above body bg */
    pointer-events: none;
    /* Click-through */
    overflow: hidden;
}

.rain-heart {
    position: absolute;
    top: -10vh;
    color: #ff4b2b;
    /* Fallback color */
    opacity: 0.8;
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Update container and main elements to be above the rain */
.container {
    position: relative;
    z-index: 10;
}

#loginScreen {
    z-index: 10000;
    /* Already high, but ensuring */
}