.games {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 40px;
}

.games article {
	padding: 0;
	width: min-content;
	display: flex;
	background: #ddd;
	align-items: stretch;
	flex-flow: column;
	color: #666;
	flex: 0 0 min-content;
	box-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.games article img {
	width: 500px;

	margin: 0;
	padding: 0;
}

.games article div {
	font-family: 'Exo 2', sans-serif;
	font-size: 16px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	padding: 15px;
	gap: 15px;
	align-self: stretch;
}

.games article div a {
	text-decoration: none;
	font-weight: bold;
	color: #222;
}

.games article div a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 500px) {
	.pad {
		height:100%;
		width:100%;
		font-size: 20px;
	}

	.games {
		flex-flow: column nowrap;
	}

	.games article img {
		height: auto;
		max-width: 100%;
	}

	.games article {
		width: 100%;
	}

	.games article div a {
		text-decoration: underline;
	}
}
