/* schnee.css */
#schnee-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2; /* über Hintergrund, aber unter Text */
    overflow: hidden;
}

/* Schneeflocken-Stil */
.schneeflocke {
    position: absolute;
    color: white;
    font-size: 12px;
    opacity: 0.8;
    user-select: none;
    animation: fallen linear forwards;
    text-shadow: 0 0 6px rgba(255,255,255,0.7);
}

/* Schneefall-Animation */
@keyframes fallen {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}
