#snow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 150vh;
    overflow: hidden;
    pointer-events: none !important;
    max-height: 100%;
}

.snowflake {
    position: absolute;
    width: 22px;
    height: 22px;
    background-image: url(./snowflake.svg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    pointer-events: none;
    filter: drop-shadow(0 0 10px white);
}
