.games-container {
	display: grid;
	grid-template-columns: auto auto auto;
	padding: 0px;
	margin-left: auto;
	margin-right: auto;
	gap: 10px;
	justify-content: center;
}

.tile {
	width: 220px;
	height: 220px;
	display: block;
	padding: 0px;
	margin: 0px;
	text-align: center;
	border-radius: 20px;
	border: 5px solid var(--color-rose-6);
}

.background {
	position: absolute;
	display: block;
	width: 220px;
	height: 220px;
	margin: 0px;
	padding: 0px;
	background-size: cover;
	border-radius: 15px;
}

.overlay {
	position: absolute;
	display: block;
	width: 220px;
	height: 220px;
	margin: 0x;
	padding: 0px;
	text-align: center;
	border-radius: 15px;

	clip-path: polygon(0% 0%, 100% 0, 100% 0%, 0% 0%);

	display: flex;
	flex-direction: column;
	backdrop-filter: blur(5px);
	transition: all 0.3s;
}

.tile:hover .background {
	filter: brightness(35%);
	transition: all 0.3s;
}

.tile:hover .overlay {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.games-container a {
	display: block;
	width: 100%;
	height: 100%;
}

.games-container h2 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.games-container p {
	padding-left: 5px;
	padding-right: 5px;
	color: var(--color-rose-2);
	margin-top: 0px;
	margin-bottom: 0px;
}
