#archive-description p {
	padding-left: 100px;
	padding-right: 100px;	 
	text-align: center;
	line-height: 20pt;
	font-size: 13pt;
}
#main-section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items:flex-start;
}
#banner {
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: center;
	background-color: #AAAa;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	font-size: 14pt;
}
.grid-item {
	width: 45%;
	/*flex-basis: 42%;*/
	margin: 20px 0 40px 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items:flex-start;
	position: relative;
	/*width:40%;*/
	/*display: inline-block;*/
}
.play-icon {
	position: absolute;
	left: 45%;
	top: 40%;
	width: 70px;
	filter: invert(0.3);
	z-index: 5;
}
.play-icon:hover {
	cursor: pointer;
}
.grid-item a, .grid-item button {	
	width: 100%;
	text-align: center;
	/*padding: */
}
.grid-item video, .grid-item img.thumbnail {
	z-index: 4;
	width: 100%;
	box-shadow: 0px 0px 10px 0px #000;
}
p {
	text-align: justify;
}
.grid-item .video-button {
	position: absolute;
	bottom: 0px;
	transition: bottom 0.8s ease;
	z-index: 0;
}
.grid-item .video-button.slidedown {
	z-index: 4;
	bottom: -50px;
}
.quick-fadeout {
	animation: quickfade 1s ease forwards;
}
@keyframes quickfade {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}