html {
	background-color: black;
	color: white;
	font-family: Verdana;
}

.gameboard {
	border: 5px white solid;
	width: 95%;
	height: 400px;
	padding: 10px;
	text-align: center;
	overflow: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.content {
	text-align: center;
}

button {
	padding: 20px 40px;
	background-color: rgb(66, 66, 66);
	color: white;
	border-radius: 10px;
	border-style: solid;
	transition-duration: 0.2s;
	font-size: 24px;
	margin: 10px;
}

button:hover {
	background-color: rgb(99, 99, 99);
}

.inventory {
	border: 5px white solid;
	width: 95%;
	height: 200px;
	padding: 10px;
	overflow: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

li:hover {
	cursor: pointer;
}

#look {
	display: block;
}