.lightbox {
	display: none;
	position: fixed;
	z-index: 999;
	text-align: center;
	top: 0;
	left: 0;
    right: 0;
    bottom: 0;
	background: rgba(0,0,0,0.8);
}

/* abstand zwischen thumbnails */
.lightbox-thumb {
    margin-right: 1%;
}

/* größe thumbnails */
.lightbox-thumb img {
    max-width:  10%;
    max-height: 10%;
}

/* größe large image */
.lightbox-large img {
    max-width:  75%;
    max-height: 75%;
	margin: 5%;
}

.lightbox:target {
	display: block;
}

