main.pexeso {
	max-width: 660px;
	margin: 0 auto;
	padding: 0 10px;
}
.pexeso .info {
	margin-bottom: 2em;
}
.pexeso .body {
	margin-bottom: 2em;
}
.pexeso .table {
	position: relative;
}
.pexeso .board {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	border: 2px solid #3899c0;
	border-radius: 8px;
}
.pexeso .card {
	display: flex;
	aspect-ratio: 1/1;
	align-items: center;
	padding: 6px;
}
.pexeso .card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	user-drag: none;
	user-select: none;
	/* border: 2px solid #7ea9ba; */
	outline: 2px solid #7ea9ba;
	inset-inline: 0;
	border-radius: 4px;
	box-shadow: 4px 4px 2px 0 rgba(98, 144, 160, 0.5);
	background-color: #eaebed;
}
.pexeso .card img.back {
	display: block;
	background-color: #dcdce6;
}
.pexeso .card img.front {
	display: none;
	background-color: #fff;
}
.pexeso .tries span {
	font-weight: bold;
}
.pexeso .game-over {
	display: none;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(126, 169, 186, 0.2);
	border-radius: 8px;
}
.pexeso .game-over div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 1.7em;
/* 	text-transform: full-width; */
}
.pexeso .sizes {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1em;
}
@media screen and (max-width: 361px) {
	.pexeso .board {
		border-radius: 2px;
	}
	.pexeso .card {
		padding: 3px;
	}
	.pexeso .card img {
		border-radius: 2px;
		outline-width: 1px;
		box-shadow: 2px 2px 1px 0 rgba(98, 144, 160, 0.5);
	}
	.pexeso .game-over {
		border-radius: 2px;
	}
}
