body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #2d91c2 0%, #1e528e 100%);
    overflow: hidden;
    font-family: 'Pacifico', cursive;
    position: relative;
}

h1 {
    color: white;
    position: relative;
    z-index: 1;
    font-size: 4rem;
    text-align: center;
}

#snow-container {
    position: fixed; /* Ensures it covers the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.snowflake {
    position: absolute;
    color: white;
    font-size: 1em;
    opacity: 0.8;
    user-select: none;
    animation: fall linear infinite, sway ease-in-out infinite;
}

@keyframes fall {
    from {
        transform: translateY(-10vh); /* Start above the viewport */
    }
    to {
        transform: translateY(110vh); /* End below the viewport */
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}
