* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Baskerville Old Face, monospace, Helvetica, serif;
}

body {
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(#a2000a, #cf0000);
}

.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.snow-container .snowFlake {
    position: absolute;
    color: #fff;
    font-size: 2em;
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translatey(-100px);
        opacity: 0;
    }

    10%,
    70% {
        opacity: 1;

    }

    100% {
        transform: translatey(100vh);
        opacity: 0;
    }
}



.snow-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 400px;
    background: url(images/boule_de_Noel.png);
    background-repeat: no-repeat;
    z-index: 15;
}

.snow-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 60%;
    width: 100%;
    height: 600px;
    background: url(images/sapin3.png);
    background-repeat: no-repeat;
    z-index: 15;
}

.circle {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(50%);
    width: 350px;
    height: 350px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 15;
    overflow: hidden;
}

.snow-container h1 {
    position: absolute;
    top: 10%;
    left: 30%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 5em;
    text-align: center;
    text-transform: uppercase;
    z-index: 16;
}

.snow-container h1 span {
    font-size: 2em;
    text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
}

.snow-container .circle .text1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    color: #e4aa5f;
    font-size: 2em;
    text-align: center;
    text-transform: uppercase;
    z-index: 16;
    animation: loop 4s ease-in infinite;
    font-weight: 700;
}


@keyframes loop {
    0% {

        transform: translatex(-100%);
    }

    100% {
        transform: translatex(150%);
    }
}


.snow-container .text2 {
    position: absolute;
    top: 40%;
    left: 30%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2em;
    text-align: center;
    text-transform: capitalize;
    z-index: 16;
}

@media screen and (max-width: 1230px) AND (min-width: 901px) {
    .circle {
        width: 250px;
        height: 250px;

    }

    .snow-container h1 {
        font-size: 4em;
    }
}

@media screen and (max-width: 900px) {
    .circle {
        width: 150px;
        height: 150px;

    }

    .snow-container h1,
    .text2 {
        font-size: 1.5em;
    }

    .snow-container .text2 {
        left: 50%;
    }

    .snow-container .circle .text1 {
        animation: loop 6s ease-in infinite;
    }

    .snow-container::before {
        width: 100%;
        scale: 0.5;
        top: 70%;
    }

    .snow-container::after {
        display: none;

    }
}