/* Ensure the snow effect covers the whole page */
body {
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Prevent interactions with snowflakes */
    z-index: 9999; /* Ensure it stays on top of other elements */
}

/* Snowflake base styling */
.snowflake {
    position: fixed;
    top: -10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear infinite;
}

/* Falling animation */
@keyframes fall {
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}
