body {
	margin: 0;
	font-family: Tahoma, Verdana, Arial, sans-serif;
}

div#message {
	padding: 25px;
	font-size: x-large;
	width: 100%;
	text-align: center;
	background-color: darkred;
	color: white;
}

#canvas {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	display: block;
	pointer-events: none; /* makes the canvas invisible to the mouse so that text beneath can be selected */
}

#stats, #status, #character, #inventory {
	display: none;
}

#inventory {
	position: fixed;
	top: 3px;
	left: 300px;
	z-index: 20;
	font-size: small;
	border: 1px solid darkgray;
	padding: 3px;
	background-color: gray;
}

#character {
	position: fixed;
	top: 3px;
	left: 150px;
	z-index: 20;
	font-size: small;
	border: 1px solid darkgray;
	padding: 3px;
	background-color: gray;
}

#character ul {
	list-style: none;
	padding-left: 0;
}

#inventory ul {
	list-style: none;
	padding-left: 0;
}


#status {
	position: fixed;
	top: 93px;
	left: 0;
	z-index: 20;
	font-size: small;
}

#status ul {
	list-style-type: none;
	margin-left: 0;
	padding-left: 3px;
	margin-top: 3px;
}