#titre {
    text-align: center;
    font-size: 2em;
    margin-bottom: -30px;
}

#navBarEpisode {
    text-align:center;
    height: 90vh;
    width: 100%;
}

#image {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 60%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;    
}

#precedent, #suivant {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    background-color: white;
    color: black;
    width: 30px;
    height: auto;
    text-align: center;
}

#precedent:hover, #suivant:hover {
    background-color: #d6d6d6;
    cursor: pointer;
}

#precedent p, #suivant p {
    position: relative;
    top: 50%;
}

#suivantMobile, #precedentMobile {
    display: none;
}

#tutoMobile {
    display: none;
}

@media (orientation: portrait) {

    #titre {
        margin-top: 200px;
    }

    #image {
        margin: 0;
        display: inline-block;
        vertical-align: middle;
        height: 80%;
        width: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;    
    }

    #precedent, #suivant {
        display: none;
    }

    #suivantMobile, #precedentMobile {
        display: block;
        position: absolute;
        top: 200px;
        width: 50%;
        height: 80vh;
    }
    #suivantMobile {
        right: 0;
    }
    #precedentMobile {
        left: 0;
    }

    #tutoMobile {
        display: block;
        text-align: center;
    }

}