.movie__trailer {
    display: grid;
    position: relative;
    width: 95%;
    margin: 1rem;
    border-radius: 10px;
    border: solid white 10px;
}

.movie__trailer_layout {
    width: 100%;
    aspect-ratio: 16/9;
    grid-column: 1/-1;
}


iframe {
    max-width: 100%;
}


/* ECRAN LARGE */
@media (min-width:75rem) {
    .affichage-films {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(20rem,1fr));
    }
}


