/* Base */

html, body {
	background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
	text-align: center;
}

/* Content */

.content h1 {
	text-align: center;
}

/* Games */

.games {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	gap: 2px;
}

.games .entry {
	flex-grow: 1;
	width: 30%;
	height: 100px;
	position: relative;
	overflow: hidden;
}

#photos .entry {
	width: 24%;
}

.games .entry .preview {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-position: center;
	background-size: cover;
	transition: top 0.25s, left 0.25s, right 0.25s, bottom 0.25s;
}
.games .entry .fade {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #37946e;
	transition: opacity 0.25s;
}

.games .entry .title {
	position: absolute;
	width: 100%;
	left: 50%;
	top:50%;
	transform: translateX(-50%) translateY(-25%);
	text-align: center;
	font-weight: bold;
	color: #fff;
	font-size: 1.5em;
	opacity: 0.0;
	text-transform: uppercase;
	filter: drop-shadow(2px 2px 0px #000);
	transition: opacity 0.25s, transform 0.25s, padding 0.2s;
}

.games .entry:hover .preview {
	left: -2%; top: -2%; right: -2%; bottom: -2%;
}
.games .entry:hover .fade {
	opacity: 0.5;
}
.games .entry:hover .title {
	opacity: 1.0;
	transform: translateX(-50%) translateY(-50%);
}


.presentedby .logos {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
}

.presentedby .logos img {
	height: 80px;
	flex: 1.0;
}