
.lightbox-target {
  position: fixed;
  top: -100%;
  width: 100%;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: .5s ease-in-out;
  overflow: hidden;
  z-index: 100;
}
.lightbox-target .lightbox-content {
  width: 90%;
  height: 90%;
  background: #870123;
  color: #333;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 0%;
  max-width: 0%;
  border: 0px solid #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  box-sizing: border-box;
  transition: .5s ease-in-out;
  overflow-y: auto;
  overflow-x: hidden;
}
.lightbox-target img {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 0%;
  max-width: 0%;
  border: 3px solid #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  box-sizing: border-box;
  transition: .5s ease-in-out;
}
.lightbox-target:target {
  opacity: 1;
  top: 0;
  bottom: 0;
}
.lightbox-target:target .lightbox-content,
.lightbox-target:target img {
  max-height: 100%;
  max-width: 100%;
}
.lightbox-target:target .lightbox-close {
  top: 5%;
}
.lightbox-close {
  display: block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  background: #000;
  color: #fff;
  position: absolute;
  top: 10%;
  right: 5%;
  z-index: 100;
}
.lightbox-close:before,
.lightbox-close:after {
  content: " ";
  display: block;
  height: 30px;
  width: 1px;
  background: #fff;
  position: absolute;
  left: 26px;
  top: 10px;
  transform: rotate(45deg);
}
.lightbox-close:after {
  transform: rotate(-45deg);
}