@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) translateX(20vw) rotate(360deg);
    }
}

.snowflake {
    position: fixed;
    width: 30px;
    height: 30px;
    background: url('https://originalcaveman.com/wp-content/uploads/2023/12/removal.ai_76709daf-0ab0-4ad3-b7bd-7949e841e9c1-snowflake-intricate-pattern-clip-art-59075.png') no-repeat center/contain;
    animation: snowfall linear infinite;
    animation-duration: 15s;
    pointer-events: none;
}

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    animation: snowfall-container linear infinite;
    animation-duration: 15s;
}
