html, body {
	margin: 0;
	min-height: 100%;
} 
body {
	background: black;
	font-family: "Century Gothic", CenturyGothic, AppleGothic, Raleway, sans-serif;
}
ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
a {
	text-align: center;
	color: white;
	font-size: 5vw;
}
#masonryContainer {
	width: 100%;
	margin: 0 auto;
}
#masonryContent {
	-moz-column-count: 3;
	-moz-column-gap: 0px;
	-webkit-column-count: 3;
	-webkit-column-gap: 0px;
	column-count: 3;
	column-gap: 0px;
	width: 100%;
}
#masonryContent img {
	display: flex;
	margin-bottom: 0px;
	width: 100%;
	/*transition: opacity 0.25s ease-in-out;*/
}
@media only screen and (max-width : 599px),
only screen and (max-device-width : 599px) {
	#masonryContent {
		-moz-column-count: 2;
		-moz-column-gap: 0px;
		-webkit-column-count: 2;
		-webkit-column-gap: 0px;
		column-count: 2;
		column-gap: 0px;
	}
}
.darken {
	opacity: 0.25;
}
.hide {
	visibility: hidden;
}
.imageContainer {
	position: relative;
	vertical-align: top;
}
.textContainer {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
