article {
	width: 100%;
}

article > header {
	display: flex;
	justify-content: center;
	align-items: center;

	padding: 0;
	margin: 20px 0 10px 0
}

.game_list {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(3, 1fr);
	justify-content: center;
	align-items: start;

	column-gap: 5%;
	row-gap: 5%;

	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 10px;
}

.game_list-item {
	display: block;
	height: 100%;
	text-decoration: none;
	color: inherit;

	grid-column: auto;

	border-radius: 10px;

	color: White;
	background-color: MediumSeaGreen;
}

.game_list-item:focus {
	outline: 2px solid White;
	border-radius: 10px;
}

.game_list-item > div {
	display: flex;
	min-width: 250px;
	flex-direction: column;
	justify-content: center;

	padding: 1vh;
}

.game_list-item header {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;

	margin-bottom: 10px;
}

.game_list-item:hover header > h3 {
	text-decoration: underline;
}

.game_list-item h3 {
	font-size: 1.5rem;
	font-weight: bold;
}

.game_list-item img {
	width: 40%;
	height: auto;

	border-radius: 10px;
	margin-right: 10px;
	margin-bottom: 5px;

	float: left;
}

.game_list-item p {
	font-size: 1.2rem;
}
