@keyframes appear-background {
    0% {
        height: 0vh;
    }

    30% {
        height: 30vh;
    }

    60% {
        height: 70vh;
    }

    100% {
        height: 100vh;
    }
}

@keyframes move-touch1 {
    0% {
        top: 80vh;
    }

    50% {
        top: 83vh;
        font-size: 5em;
    }

    100% {
        top: 80vh;
        font-size: 4em;
    }
}

@keyframes move-touch2 {
    0% {
        top: 25vh;
    }

    50% {
        top: 28vh;
        font-size: 5em;
    }

    100% {
        top: 25vh;
        font-size: 4em;
    }
}

@keyframes move-touch3 {
    0% {
        top: 85vh;
    }

    50% {
        top: 88vh;
        font-size: 5em;
    }

    100% {
        top: 85vh;
        font-size: 4em;
    }
}

@keyframes move-touch4 {
    0% {
        top: 25vh;
    }

    50% {
        top: 28vh;
        font-size: 5em;
    }

    100% {
        top: 25vh;
        font-size: 4em;
    }
}

@keyframes up-papa-noel {
    0% {
        width: 20%;
    }

    100% {
        width: 65%;
    }
}

@keyframes tombe-papa-noel {
    from {
        top: 10vh;
        width: 20%;
        transform: rotate(0deg);
    }

    to {
        top: 50vh;
        width: 65%;
        transform: rotate(90deg);
    }
}

@keyframes up-cadeau {
    from {
        width: 20%;
    }

    to {
        width: 45%;
    }
}

@keyframes up-papa-more {
    from {
        width: 65%;
    }

    to {
        width: 90% !important;
    }
}

@keyframes down-cadeau {
    from {
        width: 45%;
    }

    to {
        width: 10% !important;
    }
}

@keyframes papa-par {
    from {
        width: 90%;
    }

    to {
        position: fixed;
        bottom: 0;
        width: 0%;
    }
}

@keyframes papa-revien {
    from {
        width: 0%;
    }

    to {
        width: 80%;
    }
}

@keyframes move-papa {
    0% {
        left: 30vw;
    }

    100% {
        left: 65vw;
    }
}

@keyframes move-papa-two {
    0% {
        left: 65vw;
    }

    100% {
        left: 20w;
    }
}

@keyframes cadeau-one {
    0% {
        top: 66vh;
    }

    100% {
        top: 65vh;
    }
}

@keyframes cadeau-two {
    0% {
        top: 65vh;
        left: 30vw;
        transform: rotate(0deg);
    }

    100% {
        top: 45vh;
        left: -30vw;
        transform: rotate(360deg);
    }
}

@keyframes cadeau-bis-one {
    0% {
        top: 66vh;
        left: 66vw;
        transform: rotate(0deg);
    }
    100% {
        top: 66vh;
        left: 130vw;
        transform: rotate(360deg);
    }
}

.guirlande {
    position: fixed;
    width: 100%;
    top: 0;
}

.artifice {
    width: 100%;
}

body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
}


.move-papa {
    animation: move-papa 2s ease-in-out 0s;
    position: fixed;
    z-index: 3;
    top: 65vh;
    left: 65vw;
}

.move-papa-two{
    animation: move-papa-two 2s ease-in-out 0s;
    position: fixed;
    z-index: 3;
    top: 65vh;
    left:20vw;
}

#background {
    position: fixed;
    height: 0vh;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    animation: appear-background 2s ease-in-out 0s;
    background-color: red;
    text-align: center;
}

#text-background {
    color: white;
    font-weight: bold;
    margin-top: 30vh;
    font-size: 2em;
}

.papa-noel {
    position: fixed;
    z-index: 6;
    top: 65vh;
    left: 30vw;
}

.cadeau-papa {
    position: fixed;
    z-index: 2;
    top: 65vh;
    left: 30vw;
    width: 30%;
}

.cadeau-papa-one {
    animation: cadeau-one 1s ease-in-out 0s;
    position: fixed;
    z-index: 3;
    top: 65vh;
    left: 30vw;
    width: 30%;
}

.cadeau-papa-two {
    animation: cadeau-two 1s ease-in-out 0s;
    position: fixed;
    z-index: 3;
    top: 45vh;
    left: -30vw;
    transform: rotate(0deg);
    width: 30%;
}



.chapeau-cadeau {
    position: fixed;
    z-index: 3;
    top: 66vh;
    left: 30vw;
    width: 30%;
}

.chapeau-cadeau-2 {
    position: fixed;
    z-index: 4;
    top: 66vh;
    left: 60vw;
    width: 30%;
}
.chapeaucadeau-bis-2{
    position: fixed;
    z-index: 4;
    animation: cadeau-bis-one 1s ease-in-out 0s;
    width: 30%;
    top: 60vh;
    left: 130vw;
}

.cadeau-papa-2 {
    position: fixed;
    z-index: 3;
    top: 65vh;
    left: 60vw;
    width: 30%;
}

.papa-noel-norm {
    width: 35%;
}
.zindex{
    z-index: 5;
}

.touch-icon {
    position: fixed;
    z-index: 9;
    top: 80vh;
    left: 40vw;
}

.move-icon-1 {
    animation: move-touch1 1s ease-in-out 0s infinite;
}

.move-icon-2 {
    animation: move-touch2 1s ease-in-out 0s infinite;
}

.move-icon-3 {
    animation: move-touch3 1s ease-in-out 0s infinite;
}

.move-icon-4 {
    animation: move-touch4 1s ease-in-out 0s infinite;
}

.up-papa-noel {
    animation: up-papa-noel 1.5s ease-in-out 0s;
    width: 65%;
}

.tombe {
    animation: tombe-papa-noel 0.6s ease-in-out 0s;
    transform: rotate(90deg);
    top: 50vh;
}

.bubble-text {
    position: fixed;
    top: 20vh;
    left: 65vw;
    z-index: 4;
    width: 40%;
}

.button-repare {
    border: 1px solid white;
    position: fixed;
    z-index: 4;
    top: 5vh;
    height: 15vh;
    margin-left: 10vw;
    margin-right: 10vw;
    width: 80vw;
    padding: 1em;
    color: black;
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

#cadeau-noel {
    position: fixed;
    z-index: 4;
    bottom: 0;
    width: 20%;
    left: 15vw;
}

.btn-choice {
    position: fixed;
    z-index: 4;
    top: 5vh;
    display: inline-flex;
}

.btn-choice button {
    border: 1px solid white;
    height: 10vh;
    margin-left: 5vw;
    margin-right: 5vw;
    width: 40vw;
    color: black;
    background-color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

.up-cadeau {
    animation: up-cadeau 1s ease-in-out 0s;
}

.up-papa-more {
    animation: up-papa-more 1s ease-in-out 0s;
    width: 90% !important;
}

.down-cadeau {
    animation: down-cadeau 1s ease-in-out 0s;
    width: 10% !important;
}

.papa-par {
    animation: papa-par 2s ease-in-out 0s;
    width: 0%;
    bottom: 0;
    position: fixed;
}

.papa-revien {
    animation: papa-revien 2s ease-in-out 0s;
}

#neige {
    width: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    height: 2em;
    position: fixed;
    bottom: -1em;
    z-index: 1;
}

.hidden {
    display: none;
}

.txt-noel {
    position: fixed;
    top: 10vh;
    text-align: center;
}

.copy {
    position: fixed;
    text-align: center;
    bottom: 2vh;
    font-size: 20px;
    color: white;
    text-shadow:
        0 0 5px white,
        0 0 10px white,
        0 0 20px white,
        0 0 40px black,
        0 0 80px black,
        0 0 90px black,
        0 0 100px black,
        0 0 150px black;
}

.neige-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 10vh;
}

.neon {
    font-size: 3em;
    color: white;
    text-shadow:
        0 0 5px white,
        0 0 10px white,
        0 0 20px white,
        0 0 40px red,
        0 0 80px red,
        0 0 90px red,
        0 0 100px red,
        0 0 150px red;
}