html {
	background-color: #f0f0f0;
	background-image: url(assets/bg_cork.png);
	padding: 80px 0;
}
#header {
	display: flex;
	justify-content: center;
}
#gallerynav {
	color: #000;
	margin: 12px 0px;
}
#gallerynav a {
	padding: 2px 8px;
	color: #000;
	text-decoration: none;
}
#gallerynav a:hover {
	color: #E53B44;
}
#galselect {
	background-color: #000000;
	color: #f0f0f0 !important;
	cursor: default;
}

#main_gallery {
	margin: auto;
	width: 80%;
	max-width: 720px;
	margin-top: 44px;
	border: 1px solid #000;
	background-color: #f0f0f0;
	overflow: hidden;
	overflow: hidden;
	text-align: center;
}

/* Gallery header area */
#header {
	background-color: #f0f0f0;
}

/* Modal view */
#modal-div {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
/* Modal image */
#modal-img {
	position: fixed;
	left: 50vw;
	top: 50vh;
	transform: translate(-50%, -50%);
	max-width: 75vw;
	max-height: 75vh;
}

/* Gallery thumbnails */
.thumbnail {
	border: 1px solid #CEC9BB;
	display: inline-block;
	width: 160px;
	margin: 2px;
}

.thumbnail:hover {
	border: 1px solid #000;
}

.thumbnail img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
	cursor: pointer;
}