body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Versteckt Scrollbalken */
    background-color: #282c34; /* Hintergrundfarbe */
}

#snow-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Vollständige Höhe */
}

.snowflake {
    position: absolute;
    top: -10px; /* Beginnt oberhalb des Bildschirms */
    color: white; /* Schneeflockenfarbe */
    font-size: 1em; /* Größe der Schneeflocken */
    pointer-events: none;
    user-select: none; /* Verhindert Auswahl */
    animation: fall linear infinite; /* Animation */
}

@keyframes fall {
    to {
        transform: translateY(100vh); /* Fällt bis zum unteren Bildschirmrand */
    }
}