* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.vignette img {
    max-width: 200px;
}

.gallery-container {
    width: 100vw;
}

.vignette {
    float: left;
    width: 250px;
    height: 170px;
    border: 1px dotted #ccc;
    margin: 15px;
    padding: 15px;
}

.pe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close {
    z-index: 1;
    position: absolute;
    margin: 5px;
    border-radius: 30%;
    top: 0;
    left: 0;
    color: white;
    background: rgb(77, 72, 72);
    border: 1px solid black;
    width: 50px;
    height: 50px;
}

.move {
    z-index: 1;
    border-radius: 6px;
    color: white;
    background: rgb(77, 72, 72);
    opacity: 0.7;
    border: 0;
    width: 150px;
    height: 70%;
    font-size: 2em;
}

.prev {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: 90px;
    background: transparent;
    color: transparent;
}

.prev:hover,
.next:hover,
.titre:hover {
    color: white;
    background: rgb(77, 72, 72);
}

.next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-right: -100px;
    background: transparent;
    color: transparent;
}

.titre {
    position: absolute;
    top: 0;
    text-align: center;
    z-index: 1;
    font-size: 2;
    background: transparent;
    color: transparent;
    display: block;
    min-width: 100%;
}

.commentary {
    z-index: 3;
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: -20px;
    margin: 0;
    background-color: black;
    width: 100%;
    color: white;
    min-height: 50px;
}

.comList {
    text-align: center;
}