.fa-snowflake {
    color: #fff;
    position: fixed;
    top: -20px;
    animation: fall linear forwards;
    z-index: 9999;
}

@keyframes fall {
    to {
        transform: translateY(105vh);
    }
}