.gallery {
    background: #EEE;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding: 1rem;
    overflow-x: hidden;
    overflow-y: hidden;
    
  }
  
  .gallery-cell {
    width: 66%;
    /* height: 500px; */
    margin-right: 10px;
    background: rgb(205, 205, 205);
    counter-increment: gallery-cell;
    display: flex ;
    align-items: center;
    justify-content: center;
  }
  
  /* cell number */
  .gallery-cell:before {
    display: block;
    text-align: center;
    line-height: 200px;
    font-size: 80px;
    color: white;
  }

  .gallery-cell img{
    max-width: 100%;
    
    height: auto;

    
  }