@font-face {
    font-family: "Blippo";
    src: url("assets/Blippo.ttf");
}
.split-character span {
    display: inline-block;
}

.title {
    display: inline-block;
    overflow: hidden;
}
#titre{
    margin-top: 10%;
    margin-left: 10%;
    margin-right: 10%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid black;
}
#afficherPlus{
    font-size: 80px;
    margin-right: 45%;
    margin-top: 10%;
    border-radius: 100%;
}

#afficherPlus:hover{
    cursor: pointer;
    background-color: black;
    color: white;
}
#disparitionFondue{
    position: absolute;
    z-index: 2;
}
#blocImage{
    width: 100%;
    height: 100%;
    margin: -10px 0px 0px;
}
#blocImage div {
    width: 100%;
    margin: auto;
    z-index: 200;
}
#image{
    width: 100%;
}
figure {
    position: relative;
    display: inline-block;
}
figcaption {
    position: absolute;
    width: 100%;
    top: 15%;
    text-align: center;
    color: white;
    font-family: "Blippo", fantasy;
}
.image {
    background-size: cover;
    width: 100%;
    height: 105vh;
}
span > span {
    opacity: 0;
    animation: titleAnimation 0.7s cubic-bezier(0.95, 0.05, 0.795, 0.035) 1 forwards;
}

@keyframes titleAnimation {
    from {
        transform: translate3d(0, 1000%, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

#apparitionFondue{
    opacity: 0;
    visibility: hidden;
}
#apparitionFondueBis{
    opacity: 0;
    visibility: hidden;
}

@media (max-width:480px){
    #afficherPlus{
        margin-right: 40%;
    }
}