.affichage-films {
    display: grid;
    place-items: center;
    grid-template-rows: 1fr;
    grid-template-columns: 3fr;
    padding: 0;
}

.movie__carte {
    display: flex;
    padding: 1rem;
    margin: 1rem;
    max-width: 16rem;
    height: 25rem;
    flex-wrap: nowrap;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0px 0px 21px -3px rgba(255,255,255,0.56);
    border-radius: 5px;
    background-color: white;
    transition: 1s;
    transition: all .3s ease-in;
}

.movie__carte:hover {
    scale: 1.1;
    color: pink;
}



.movie__poster {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    overflow: hidden;
    border-radius: 5px;
    background-color:  rgb(224, 103, 124);
    transition: all .3s ease-in;
}  

.movie__poster:hover {
    mix-blend-mode:overlay;
}  

.movie__poster_bg {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    overflow: hidden;
    border-radius: 5px;
    transition: all .3s ease-in;
    background-color: pink;
}



.movie__titre {
    overflow: hidden;
}

.movie__info {
    padding-top: 1rem;
}


p {
    font-size: small;
}






/* ECRAN LARGE */
@media (min-width:75rem) {
    .affichage-films {
        grid-template-columns: repeat(5, 1fr); 
    }
    
}