*, *:before, *:after {
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
	zoom: reset;
}

body{
	background-color: rgb(39, 39, 39);
	padding:0px;
	margin:0px;
	overflow:hidden;
	font-family: Roboto Mono, Consolas, monospace, "Courier New";
	xfont-family:Arial;
	zoom: reset;
	color:grey;
	user-select:none;

}

#content {
	overflow:hidden;
	width:100vw;
	height:100vh;
	display:flex;
	xflex-direction: column;
	justify-content: center;
	align-items: center;
	xpadding:10px;
}

.box-cont {
	width: 150px;
	height:100%;
	flex:1;

	display:flex;
	xflex-direction: column;
	justify-content: end;
	align-items: center;
	background-color:rgba(0,0,0,0.5);
	padding:10px;
	
	xborder-color: lime;
	xborder-style: solid;
}

.box-cont.left{
	xborder-right: 2px solid grey;
}

.box-cont.right{
	xborder-left: 2px solid grey;
	justify-content: start;
}

.box-cont > .box {
	border:2px solid grey;
	border-radius:5px;
	width:50%;
	height:80%;
	background-color:rgba(0,0,0,0.5);

	box-shadow:
		inset 5px 5px 5px 0px rgba(0,0,0,0),
		inset 0px 0px 5px 0px rgba(0,0,0,0.5),
		5px 5px 10px 0px rgba(0,0,0,0.5)
	;
}



#canvas-cont {
	xwidth:100vw;
	xheight:100vh;
	
	xmargin-top:10px;
	margin: 20px 20px 0px 20px;
}

#canvas {
	border:2px solid rgb(6, 101, 125);
	border-radius:5px;
	width:500px;
	height:500px;
	background-color:rgba(0,0,0,0.2);
	box-shadow:
		inset 5px 5px 5px 0px rgba(0,0,0,0.5),
		inset 0px 0px 5px 0px rgba(0,0,0,0.5),
		5px 5px 10px 0px rgba(0,0,0,0.5)
	;
}









