.snow-container {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 9999;
}

.snowflake {
    position: fixed;
    top: -10px;
    will-change: transform, opacity;
    animation-name: snowfall;
    animation-timing-function: linear;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.snowflake .csf-snow-svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: currentColor;
}

@keyframes snowfall {
    to {
        transform: translateY(110vh);
    }
}
