.gallery-container{
	display:flex;
	flex-wrap:wrap;
	justify-content: space-evenly;
gap: 10px;}

.image-container {
  height: 150px; /*width: 180px;*/
  position: relative;
  cursor: pointer;
  flex-grow: 1;
}
.image-container img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.502);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.2s 0.1s ease-in-out;
  color: #fff;
  border-radius: 5px;
  /* center overlay text */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:small;
}

/* hover */
a.image-container:hover .overlay {
  transform: scale(1);
}