.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 10;
	width: 100%;
  height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox img {
	/** Pad the lightbox image */
	width: auto;
	height: 88.5vh;
	margin-top: 8vh;
	border-radius: 12px;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}

 .lightbox-scroll {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 10;
	width: 100%;
  height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox-scroll img {
	/** Pad the lightbox image */
	width: auto;
	height: 88.5vh;
	margin-top: 8vh;
	border-radius: 12px;
}

.lightbox-scroll:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
  flex-wrap: nowrap;
  overflow: auto;
}

@media screen and (min-width: 0px) and (max-width: 600px) { /* small screens */
.lightbox:target {
   display: none; 
  }
}

@media screen and (min-width: 601px) and (max-width: 800px) { /* medium screens */
  .lightbox img {
    /** Pad the lightbox image */
    max-width: 94vw;
    height: auto;
    margin-top: 12vh;
  }
}

@media screen and (min-width: 801px) and (max-width: 1100px) { /* larger screens */
  .lightbox img {
    max-width: 94vw;
    max-height: 95vh;
  }
}