#gallery {
	line-height:0;
	column-count:3;
	column-gap:5px;
	display:block;
}

#gallery img {
	width: 100% !important;
	height: auto !important;
	margin-bottom:5px;
	display:block;
	filter: grayscale(100%);
	transition: filter 2s;
}

#gallery video {
	width: 100% !important;
	height: auto !important;
	margin-bottom:5px;
	display:block;
	filter: grayscale(100%);
	transition: filter 2s;
}

#gallery img:hover {
	filter:none;
}

#gallery video:hover {
	filter:none;
}


@media (max-width: 1000px) {
	#gallery {
		column-count:3;
	}
}
		
@media (max-width: 800px) {
	#gallery {
		column-count:2;
	}
}

@media (max-width: 400px) {
	#gallery {
		column-count:1;
	}
}


/* Polaroid */
.polaroid a {
	background: #ffffff;
	display: inline-block;
	margin: 55px 75px 30px;
	padding: 15px 15px 30px;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, .3);
	z-index: 0;
	position: relative;
}

.polaroid a:after {
	color: #333;
	font-size: 1vw;
	font-family: Helvetica;
	content: attr(title);
	position: relative;
	top: 15px;
}

/* Lightbox */
#darkbox {
	position:absolute;
	top:0; 
	left:0;
	background: #ffffff;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, .3);
	z-index: 0;
}

.darkboximg { padding:5% 5% 2% 5%}
.fullsizelink {margin-bottom:2rem;font-family:Helvetica;font-weight:bold;}
.fullsizelink a {color:white;}

