main {
    /* border: 1px solid green; */
    padding: 0 10px 0 10px;
    justify-self: center;
}

.films_moment_entete {
    background-color: var(--couleur_barres);
    height: 26px;
    width: 100%;
    color: white;
    padding-left: 0.5em;
    margin-bottom: 15px;
    border-radius: 5px;

    display: flex;
    align-items: center;
}

.films_moment_contenu {
    /* border: 1px solid black; */
    margin-bottom: 15px;

    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
    justify-content: center;
}

article {
    display: flex;
    flex-direction: column;
    gap: 0px;
    transition: all .2s;
}

article:hover {
    transform: translateY(-5px) scale(1.06);
    z-index: 2;
}

article>span {
    background-color: var(--couleur_barres);
    height: 28px;
    border-left: 1px solid white;
    border-top: 1px solid white;
    border-right: 1px solid white;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    color: white;
    display: grid;
    place-items: center;
}

article>img {
    height: 240px;
    border-left: 1px solid white;
    border-right: 1px solid white;
    border-top: none;
    border-bottom: none;
    cursor: pointer;
}

article>button {
    background-color: var(--couleur_barres);
    height: 28px;
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    border-top: none;
    border-radius: 0 0 15px 15px;
    font-family: Open Sans;
    color: white;
    cursor: pointer;
}

article>* {
    box-shadow: 7px 7px 1px 0px rgba(0, 0, 0, 0.5);
    transition: all .2s;
}

article:hover>* {
    box-shadow: 15px 15px 9px 0px rgba(0, 0, 0, 0.5);
}