body{
	background-color: #2f2f2f;
	height: 100%;
	margin: 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: barlow, sans-serif;
	color: white;
}

div#thumbs {
	margin: 10px auto;
	width: 1500px;
}

.bilder {
	height: 150px;
	width: 150px;
	margin: 4px;
	float: left;
}

.bilder img {
	display: block;
	margin: auto;
	vertical-align: middle;
}

div#overview {
	border: 1px solid;
	width: 600px;
	margin: 10px auto;
	background-color: #EFEFBB;
}

#overlay {
	display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.8); 
}

#overlay-content {
    margin: 5px auto;
	position: relative;
	text-align: center;
	width: 80vw;
	height: 80vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	font-size: 8em;
}

#overlay-content div{
	height: 100%;
	opacity: 0.2;
	display: flex;
	justify-content: center;
	align-items: center;
	float: left;
}

#overlay-content div:hover{
	opacity: 0.5;
}

#overlay-content #left-overlay-content{
	width: 20%;
	cursor: w-resize;
}

#overlay-content #middle-overlay-content{
	width: 60%;
	cursor: zoom-in;
}

#overlay-content #right-overlay-content{
	width: 20%;
	cursor: w-resize;
}

#overlay-close {
    color: #aaa;
    float: right;
    font-size: 7em;
    font-weight: bold;
	cursor: zoom-out;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}