/* Conteúdo para /loleslav/css/snow.css */

.snowflake {
    color: #fff;
    position: fixed;
    top: -10px;
    font-size: 20px;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px #000;
    
    pointer-events: none;
    user-select: none;

    animation: fall linear forwards;
    z-index: 9999;
}

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