#snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}
.snowflake {
    color: #fff;
    font-size: 1.5em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255,255,255,0.8);
    position: fixed;
    top: -10%;
    z-index: 9999;
    user-select: none;
    cursor: default;
    /* Gar aşak düşende aýlanyp we yrgyldap düşer ýaly */
    animation: fall linear infinite, sway ease-in-out infinite;
}

/* Aşak düşüş tizligi */
@keyframes fall {
    0% { top: -10%; }
    100% { top: 100%; }
}

/* Sagdan çepe yrgyldy we aýlanma */
@keyframes sway {
    0% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(50px) rotate(180deg); }
    100% { transform: translateX(0px) rotate(360deg); }
}

/* Her gara aýratyn tizlik we ýer berýäris */
.snowflake:nth-of-type(1) { left: 10%; animation-duration: 10s, 3s; }
.snowflake:nth-of-type(2) { left: 20%; animation-duration: 6s, 2s; animation-delay: 1s; }
.snowflake:nth-of-type(3) { left: 30%; animation-duration: 8s, 4s; animation-delay: 2s; }
.snowflake:nth-of-type(4) { left: 50%; animation-duration: 12s, 2.5s; }
.snowflake:nth-of-type(5) { left: 65%; animation-duration: 7s, 3.5s; }
.snowflake:nth-of-type(6) { left: 80%; animation-duration: 9s, 3s; animation-delay: 3s; }
.snowflake:nth-of-type(7) { left: 90%; animation-duration: 11s, 4s; }