#ImageGallery img:hover {
  transition-duration: 0.2s;
    transition-timing-function: linear;
    transform: scale(1.05)
}

#ImageGallery img {
    transition: transform .2s;
    width: 200px;
    height: 200px;
    object-fit: cover;
    padding: 0.5rem;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}