
.gallery-title {
  text-align: center;
  font-size: 20px;
  margin: 10px 0px;
  color: rgb(255, 255, 255);
}
.gallery-container {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, minmax(260px, 260px));
  column-gap: 15px;
  row-gap: 15px;
  width: 100%;
}
.gallery-item {
  overflow: hidden;
  height: 260px;
  width: 260px;
}
.gallery-item img {
  cursor: pointer;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  transition: all 500ms;
}
.gallery-item:hover img {
  opacity: 1;
  transform: scale(1.03);
}
