.game-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

	align-items: center;
	justify-content: center;
}

.game-item {
	display: flex;
	flex-direction: column;

	overflow: hidden;

	width: 40vw;
	margin: 10px;

	align-items: center;
	justify-content: center;

	border-radius: 10px;
	border: 1px solid var(--secondary);
}

.game-item .game-title {
	width: 100%;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	padding-top: 20px;
	padding-bottom: 20px;

	border-bottom: 1px solid var(--secondary);

	font-weight: bold;
	background-color: var(--lighter-bg);
}

.game-item .game-title img {
	width: 60px;
	margin-bottom: 10px;
}

.game-item .game-links {
	width: 100%;

	padding-top: 10px;
	padding-bottom: 10px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.game-item .game-links a {
	margin: 5px;

	width: 60%;

	display: flex;
	justify-content: center;
	align-items: center;

	font-size: 16px;
	font-weight: bold;
}