.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-item {
  width: 250px;
  margin: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 20px;
  transition: transform 0.2s;
}
.close {
  position: absolute;
  top: 80px;
  right: 30px;
  color: white;
  font-size: 30px;
  line-hight: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}
.zoom-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}