.gallery .container {
	display: inline-block;
	position: relative;
	cursor: pointer;
}
.gallery img {
	margin: 0 0;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.gallery .overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .1);
	display: none;
}

.gallery .container:hover .overlay {
	display: inline-block;
}

@media (min-width: 1200px) {
	.gallery .container {
		width: 285px;
		height: 285px;
		margin-bottom: 20px;
	}
	
	.gallery .container:not(:nth-child(4n-3)) {
		margin-left: 20px;
	}
	
	.gallery .overlay {
		width: 285px;
		height: 285px;
	}
}

@media (min-width: 600px) and (max-width: 1199px) {
	.gallery .container {
		width: 32%;
		padding-top: 32%;
		margin-bottom: 10px;
	}
	
	.gallery .container:not(:nth-child(3n-2)) {
		margin-left: 2%;
	}
}

@media (min-width: 400px) and (max-width: 599px) {
	.gallery .container {
		width: 48%;
		padding-top: 48%;
	}
	
	.gallery .container:not(:nth-child(2n-1)) {
		margin-left: 4%;
	}
}

@media (max-width: 399px) {
	.gallery .container {
		width: 100%;
		padding-top: 100%;
	}
}

/***************************************************************************************************/

#gallery_large {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .95);
	display: none;
}

#gallery_large #image {
	position: fixed;
}

#gallery_large #title {
	position: fixed;
	
	color: #919191;
}

#gallery_large #description {
	position: fixed;
	
	color: #919191;
}

#gallery_large .navigation {
	position: fixed;
}

#gallery_large .navigation:hover {
	background-color: lightgrey;
	cursor: pointer;
}

#gallery_large .navigation.disabled {
	cursor: default;
	color: black;
}

#gallery_large .navigation.disabled:hover {
	background-color: transparent;
}

@media (min-width: 600px) and (min-height: 600px) {
	#gallery_large #image {
		top: 40%;
		left: 50%;
		margin-left: -175px;
		margin-top: -175px;
		
		width: 350px;
		height: 350px;
	}

	#gallery_large #title {
		bottom: 61%;
		left: 50%;
		margin-left: -175px;
		margin-bottom: 175px;
		
		width: 20%;
		
		font-size: 25px;
	}

	#gallery_large #description {
		top: 40%;
		left: 50%;
		margin-left: -300px;
		margin-top: 185px;
		
		width: 600px;
		height: 30%;
		
		overflow-y: auto;
		
		font-size: 15px;
	}

	#gallery_large .navigation {
		top: 40%;
		margin-top: -175px;
		
		width: 50px;
		height: 350px;
		
		font-size: 30px;
		text-align: center;
		line-height: 350px;
	}

	#gallery_large #left {
		right: 50%;
		margin-right: 175px;
	}

	#gallery_large #right {
		left: 50%;
		margin-left: 175px;
	}
}

@media (orientation: portrait) and (max-width: 600px) {
	#gallery_large #image {
		width: 100%;
		
		top: 5vw;
	}
	
	#gallery_large #title {
		top: 0;
		left: 0;
		
		height: 5vw
	}
	
	#gallery_large #description {
		top: 105vw;
		left: 0;
		
		width: 100%;
		
		overflow-y: auto;
		
		font-size: 15px;
	}
}

/***************************************************************************************************/

.image_div_center_outer {
	
}

.image_div_center_inner {
	margin: 0 auto;
	margin-bottom: 40px;
	margin-top: 15px;
}

@media (min-width: 450px) and (orientation: portrait) {
	.image_div_center_inner {
		width: 420px;
	}
}

@media (max-width: 449px) and (orientation: portrait) {
	.image_div_center_inner {
		width: 100%;
	}
}

@media (min-height: 450px) and (orientation: landscape) {
	.image_div_center_inner {
		width: 420px;
	}
}

@media (max-height: 449px) and (orientation: landscape) {
	.image_div_center_inner {
		width: 90vh;
	}
}

h2 {
	margin-bottom: 2px;
	color: #979797;
}

time {
	font-size: 12px;
}