body{
    margin: 0;
}

main{
    width: 80%;
    margin: auto;
}
.diapo__title{
    text-align: center;
    text-decoration: underline;
}
.diapo{
    position: relative;
    overflow: hidden;
}

#nav-droite, #nav-gauche{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #8900ff;
    font-size: 3em;
}

#nav-droite{
    right: 20px;
}
#nav-gauche{
    left: 20px;
}

.diapo__elements{
    display: flex;
    transition: 1.3s linear;

}

.element{
    flex: 1 0 100%;
    position: relative;

}

.element > img{
    width: 100%;
    border-radius: 15px;
}

.caption{
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(255,255,255,0.7);
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 15px;
}

h2{
    font-size: 30px;
}