body {
  font-family: sans-serif;
}

.gallery {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
  max-width: 600px;
}

.gallery img {
  width: 150px;
  border-radius: 10px;
}

#lightbox {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 10000;
}

.close {
  position: absolute;
  cursor: pointer;
}

/* .close, .prev, .next {
  position: absolute;
  cursor: pointer;
} */

.close {
  right: 10px;
  top: 4px;
  color: #ffffff;
  font-size: 40px;
}

.close::hove{
  color: #ffffff;
  font-size: 42px;
}
.prev {
  left: 10px;
}

.next {
  right: 10px;
}