.gallery-img {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 8px;
  }

.gallery a {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
  .gallery a {
      flex: 0 0 50%;
  }

  .gallery-img {
      height: 150px;
      width: 100%;
  }
}