.rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.drop {
    position: absolute;
    bottom: 100%;
    width: 1px;
    height: 80px;
    pointer-events: none;
    animation: fall 6s linear infinite; /* Øg animationens varighed */
    background: rgba(174, 194, 224, 0.5);
    background: linear-gradient(to bottom, rgba(174, 194, 224, 0) 0%, rgba(174, 194, 224, 1) 100%);
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}
