section {
	position: relative;
	width: 100%;
	margin-top: 50%;
	
	display: -ms-inline-grid;
	display: inline-grid;
	-ms-grid-columns: 1fr 1fr 1fr;
	    grid-template-columns: 1fr 1fr 1fr;
	justify-items: center;
	
	background-color: #FF974F; /*rgba(163, 126, 134, 0.5);*/
	text-align: center;
	font-size: 2vmax;
	color: white;
}
#games {
	-ms-grid-columns: 1fr 1fr;
	    grid-template-columns: 1fr 1fr;
}
article {
	height: 600px;
	width: 100%;
	grid-column-start: 1;
	grid-column-end: 4;
	background-color: #332532;
}
div {
	position: absolute;
	-webkit-clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
	clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
	width: 60%;
	height: inherit;
	box-shadow: 0px 0px 24px 3px rgba(0,0,0,1);
	cursor: pointer;
}
h1 {
	font-size: 7vw;
	color: white;
	position: relative;
	text-align: center;
	width: 100%;
	font-family: Leoscar, Helvetica;
}
h2 {
	margin: 20px;
	grid-column-start: 1;
	grid-column-end: 4;
}
h3 {
	font-size: 4vw;
	color: white;
	font-family: Leoscar, Helvetica;
	padding: 50px;
	cursor: pointer;
    text-decoration: underline;
}
h3:hover {
	animation-name: h3hover;
	animation-duration: 0.2s;
	animation-timing-function: ease-out;
	color: #332532;
}
@keyframes h3hover {
	from {
		color: white;
	}
	to {
		color: #332532;
	}
}