/*XMAS SNOW STARTS*/

.snowflake {
    position: fixed;
    top: -10px;
    color: white !important;
    font-size: 1em;
    animation: fall linear infinite;
    z-index: 8;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(30px);
        opacity: 0;
    }
}
/*XMAS SNOW ENDS REMOVE AFTER XMAS*/


