body {
    background-color: powderblue;
    background-image: url("christmas.webp");
    overflow: hidden;
    background-size: cover;
    font-family: "Mountains of Christmas", serif;
    background-repeat: no-repeat;
}

h1 {
    color: rgb(0, 0, 0);
}

p {
    color: red;
    font-size: 4em;
    font-weight: bold;
    text-align: center;
}

form>label {
    font-size: 3em;
}

.container {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snowflake {
    position: fixed;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear infinite;
}

#daysform {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

@keyframes swayReverse {
    50% {
        transform: translateX(-20px);
    }
}

/* Generate multiple snowflakes with different sizes and animation durations */
.snowflake:nth-child(odd) {
    animation: fall 10s linear infinite, sway 3s ease-in-out infinite;
}

.snowflake:nth-child(even) {
    animation: fall 10s linear infinite, swayReverse 4s ease-in-out infinite;
}


/* Media Queries */
@media screen and (max-width: 690px) {}

@media screen and (max-width: 518px) {}

@media screen and (max-width: 453px) {}