body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: black;
}

.snowflake {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    animation: fall linear infinite;
    z-index: 2; /* Ensure snowflakes are behind the text */
}

@keyframes fall {
    to { transform: translateY(100vh); }
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red; /* Changed to red */
    font-size: 3em;
    text-align: center;
    pointer-events: none;
    z-index: 1; /* Ensure the text is above the snowflakes */
}