
/** LIGHTBOX MARKUP **/

.lightbox {
	display: none;
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: transparent;
	transition: all .2s ease-in-out;
}

.lightbox img {
	max-width: 50%;
	max-height: 800px;
	margin-top: 5%;
    border: 3px solid #fff;
    border-radius: 4px;
}

.lightbox:target {
	outline: none;
	display: block;
	background: rgba(0,0,0,0.8);
}
