body {
	background-color: #222;
}
#container {
	position: relative;
	margin: auto;
	width: 1000px;
	height: 450px;
	background-color: #000;
}
#inventory {
	position: relative;
	bottom: 0;
	left: 0;
	width: 1000px;
	height: 50px;
	margin: 5px auto;
}
#inventory .items {
	width: 50px;
	height: 50px;
	float: left;
	margin-right: 5px;
	border: 1px solid black;
}
#inventory .items img {
	display: none;
}
#next {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background-color: rgba(255,255,255,0.8);
	font-size: 30px;
	padding: 10px;
	border: 5px solid #000;
	border-radius: 12px;
	cursor: pointer;
	display: none;
	color: #000;
	text-decoration: none;
}
.clickable {
	cursor: pointer;
}
#knife {
	position: absolute;
	top: 40px;
	left: 300px;
}
#apple {
	position: absolute;
	top: 300px;
	left: 120px;
}
#rope {
	position: absolute;
	bottom: 10px;
	right: 40px;
}