.background {
	background-color: rgb(52, 166, 251);
	table-layout: fixed;
	border-spacing: 0;
}

.background td {
	padding: 0;
}

.lava {
	background-color: rgb(255, 100, 100);
}

.monster {
	background-color: greenyellow;
}

.wall {
	background-color: white;
}

.actor {
	position: absolute;
}

.coin {
	background-color: rgb(241, 229, 89);
	border-radius: 50%;
}

.player {
	background-color: rgb(64, 64, 64);
	border-top-right-radius: 10px;
}

.lost .player {
	background-color: rgb(160, 64, 64);
}

.won .player {
	box-shadow:  -4px -7px 8px white, 4px -7px 8px white;
}

.game {
	overflow: hidden;
	max-width: 600px;
	max-height: 450px;
	position: relative;
}

.message {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 40px;
	font-weight: bold;
}