.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.746); /* 20% opacity */
  backdrop-filter: blur(8px); /* blur the background */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.lightbox img {
  position: absolute;
  left: 5vw;
  top: 5vh;
  width: 90vw;
  height: 90vh;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.clickable-image {
  cursor: zoom-in; /* magnifying glass with + */
}
