body {
 
 
}

a {
 
}

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

#lightbox.hidden {
  display: none;
}

.lightbox-content {
  position: relative;
  width: 90%;
  height: 90%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

#closeBtn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  border: none;
  background: transparent;
  color: #333;
  cursor: pointer;
  z-index: 1001;
}

#lightboxFrame {
  width: 100%;
  height: 100%;
  border: none;
}