html {
	font-family: sans-serif;
	background-color : #B2BEB5;
	height: 150%;
	width: 100%;
	max-width: 1200px;
	min-width: 480px;
	margin: 0 auto;
	text-align: center;
}

p {
	text-align: center;
}

img{
	width: 520px;
	height: 360px;
}

.pannel {
	width: 360px;
	border-radius: 20px;
	border: 10px solid #747482;
	padding: 8px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16pt;
	text-align: center;
	outline: 0px solid #000000;
	outline-offset: 5px;
}

.section {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.game-img {
	width: 360px;
	height: 360px;
	object-fit: cover;
	border-radius: 20px;
	display: block;
	margin: 8px auto 0;
}

@keyframes fadeIn {
	from {
		opacity : 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

