Responsive image gallery

Make sure the images is centered, but use as much horisontal width as possible. Take 1.

by zerrax

HTML

<div class="gallery">
    <a class="imageCard">
        <img src="https://upload.megastreaming.ws/2019/01/4357307dfdfd456e2f382bc90e4603d6.jpeg" />
        <span class="title">NCIS : Los Angeles – Saison 10</span>
         <div class="back">
      <p>
      Deux agents du NCIS (Naval Criminal Investigative Service) opérent dans la division OPS du bureau de Los-Angeles. Leur mission : déjouer les attentats et autres menaces terroristes par tout les moyens
      </p>
      <button>
      Watch
      </button>
      </div>
    </a>
    <a class="imageCard">
        <img src="https://upload.megastreaming.ws/2019/01/4357307dfdfd456e2f382bc90e4603d6.jpeg" />
        <span class="title">NCIS : Los Angeles – Saison 10</span>
      <div class="back">
      <p>
      Deux agents du NCIS (Naval Criminal Investigative Service) opérent dans la division OPS du bureau de Los-Angeles. Leur mission : déjouer les attentats et autres menaces terroristes par tout les moyens
      </p>
      <button>
      Watch
      </button>
      </div>
    </a>
    <a class="imageCard">
        <img src="https://upload.megastreaming.ws/2019/01/4357307dfdfd456e2f382bc90e4603d6.jpeg" />
        <span class="title">NCIS : Los Angeles – Saison 10</span>
      <div class="back">
      <p>
      Deux agents du NCIS (Naval Criminal Investigative Service) opérent dans la division OPS du bureau de Los-Angeles. Leur mission : déjouer les attentats et autres menaces terroristes par tout les moyens
      </p>
      <button>
      Watch
      </button>
      </div>
    </a>
    <a class="imageCard">
        <img src="https://upload.megastreaming.ws/2019/01/4357307dfdfd456e2f382bc90e4603d6.jpeg" />
        <span class="title">NCIS : Los Angeles – Saison 10</span>
      <div class="back">
      <p>
      Deux agents du NCIS (Naval Criminal Investigative Service) opérent dans la division OPS du bureau de Los-Angeles. Leur mission : déjouer les attentats et autres menaces terroristes par tout les moyens
     ...

CSS

.gallery {
  width: 80%;
  margin: 0 auto;
  text-align:center;
}
.imageCard {
  position:relative;
  display: inline-block;
  margin: 18px;
  text-align:center;
  font: ;ont-size: 18px;
  background: #010101b3;
  border-radius: 5px;
  border: solid 5px #888;
  color: white;
  cursor:pointer;
   pointer-events: auto;
}

.imageCard img {
    width: 20rem;
    outline: 1px solid #515151;
    display: block;
}
.imageCard .title {
    display: block;
    text-align: center;
    padding: 10px 0;
}
div.back{
  opacity:0;
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background: rgba(0,0,0,0.85);
  font-size: 24px;
  padding:10px;
  cursor: auto;
  
}
div.back > button{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  width:100%;
  font-size:24px;
  cursor:pointer;
}
div.back:hover{
   opacity:1;
}