.gallery {
  max-width: 100%;
  margin: 0 auto;
}




.thumbnail-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5px;
}

.thumbnail {
  width: 265px;
  height: 265px;
  margin: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	
}

@media screen and (max-width: 600px) {
  .thumbnail {
    width: 100%;
    height: auto;
    margin: 10px 0;
  }
}