#lightbox-overlay picture {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox-overlay .lightbox-image {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;

  border-radius: 4px;
  border: 2px solid cyan;

  filter:
    drop-shadow(0 0 15px rgba(0,255,255,0.45))
    drop-shadow(0 0 45px rgba(0,255,255,0.2));
}

/* For scroll anchoring */
html {
  scroll-behavior: smooth;
}

