.Xmas a {
    /*background-color: rgba(255,0,0,.5) !important;*/
    background-color: #cd1c18 !important;
    background-image: linear-gradient(326deg, #cd1c18 0%, #66023c 74%);
    color: white !important
}

.Xmas h1, .Xmas p {
    color: #cd1c18 !important;
}
/* Snowfall */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: wheat;
    font-size: 2em;
    animation: fall linear infinite;
    opacity: 0.9;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.snowflake:nth-child(1) {
    left: 5%;
    animation-duration: 8s;
    font-size: 0.8em;
}

.snowflake:nth-child(2) {
    left: 15%;
    animation-duration: 12s;
    animation-delay: 1s;
    font-size: 1.2em;
}

.snowflake:nth-child(3) {
    left: 25%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.snowflake:nth-child(4) {
    left: 35%;
    animation-duration: 14s;
    animation-delay: 0.5s;
    font-size: 0.6em;
}

.snowflake:nth-child(5) {
    left: 45%;
    animation-duration: 9s;
    animation-delay: 3s;
    font-size: 1.4em;
}

.snowflake:nth-child(6) {
    left: 55%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.snowflake:nth-child(7) {
    left: 65%;
    animation-duration: 13s;
    animation-delay: 2.5s;
    font-size: 0.9em;
}

.snowflake:nth-child(8) {
    left: 75%;
    animation-duration: 7s;
    animation-delay: 0.8s;
    font-size: 1.1em;
}

.snowflake:nth-child(9) {
    left: 85%;
    animation-duration: 15s;
    animation-delay: 4s;
    font-size: 0.7em;
}

.snowflake:nth-child(10) {
    left: 95%;
    animation-duration: 10s;
    animation-delay: 2s;
}



.star {
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700;
    animation: glow 1.5s ease-in-out infinite alternate;
    text-align: center;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700;
    }

    to {
        text-shadow: 0 0 30px #ffd700, 0 0 60px #ffd700, 0 0 80px #ff6b6b;
    }
}



@keyframes twinkle {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 5px currentColor;
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 15px currentColor, 0 0 25px currentColor;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

    .gift:nth-child(2) {
        animation-delay: 0.5s;
    }

    .gift:nth-child(3) {
        animation-delay: 1s;
    }

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}



