ohtml, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	align-items: stretch;
	background-color: darkGrey;
}

div {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#room_builder {
	height: 100vh;
}

#sidebar {
	display: flex;
	flex-direction: column;
	width: auto;
}

#items {
	display: block;
	margin: 20px;
	padding: 10px;
	padding-left: 20px;
	background-color: lightGrey;
	border: 1px solid gray;
	overflow: scroll;
	width: 100px;
	height: 80vh;
}

#items img {
	width: 70px;
	height: auto;
}

#canvas {
	background-image: url('./img/room.jpg');
	background-size: contain;
}
