/* :root {

} */

body {
	font-family: sans-serif;
	display: flex;
	flex-direction: column;
}

h1 {
	text-align: center;
}

#gameDiv {
	background-color: aquamarine;
	width: 500px;
	height: 300px;
	margin: auto;
	padding: 0;
	position: absolute;
	top: 100px;
	align-self: center;
	justify-self: flex-start;
	overflow: hidden;
	scroll-behavior: inherit;
}

#player {
	background-color: brown;
	position: absolute;
	padding: 0;
	margin: 0;
}

.wall {
	background-color: red;
	position: absolute;
	padding: 0;
	margin: 0;
}

.infoText {
	width: fit-content;
	height: fit-content;
	opacity: 50%;
}

.scrittona {
	color: yellow;
	position: relative;
	top: 250px;
}

#gigi {
	position: relative;
	left: 150px;
}