body {
	font-family: verdana;
	background-color: white;
	color: black;
	font-size: 18px;
	margin: 10px;
	padding: 10px;
	overflow: hidden;
}
div.piece {
	margin: 10px;
	padding: 10px;
	background-color: #eee;
	border-radius: 10px;
	width: 5vw;
}
div.draggable {
	touch-action: none;
	display: inline-block;
	position: fixed;
}
div.choosebar {
	width: 95vw;
	background-color: #ddd;
	margin: 10px;
	padding: 10px;
	overflow-y: hidden;
	overflow-x: auto;
	white-space: nowrap;
}
div.gamearea {
	width: 100%;
	height: 80vh;
}
div.trash {
	width: 8vw;
	background-color: #eee;
	border-radius: 10px;
	padding: 5px;
}
div.trash:hover {
	cursor: pointer;
}
.drop-active {
	background-color: #ff4444;
}
.drop-ready {
	border: 1px solid #aaa;
}
div.clickable:hover {
	cursor: pointer;
}
div.clickable {
	display: inline-block;
}
div.wrong {
	background-color: #ff4444;
	width: 20px;
	height: 20px;
	margin: 5px;
}
div.right {
	background-color: #44ff44;
	width: 20px;
	height: 20px;
	margin: 5px;
}
div.gamebtn {
	float: left;
	left: 0;
	bottom: 0;
	position: fixed;
	background-color: #eee;
	padding: 10px;
}
div.gamebtn:hover {
	cursor: pointer;
}
button {
	font-size: 18px;
}
div.gamepanel {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 99;
	background-color: #eee;
	padding: 20px;
	text-align: center;
}
