
:root {
	--mainCol1 : rgba(250,250,250,1);
	--mainCol2 : rgba(50,50,50,1);
	--mainCol2l : rgba(50,50,50,0.5);
	--winCol   : rgba(100,250,100,1);
	--loseCol  : rgba(250,100,100,1);
	--drawCol  : rgba(200,200,50,1);
	--scrollBarWidth : -17px;
}

body {
	position         : absolute;
	
	top              : 0;
	left             : 0;

	overflow         : none;
	height           : 100%;
	width            : 100%;
	max-width        : 100%;
	/*display: flex;
	flex-wrap: wrap;*/
	margin           : 0;
	padding          : 0;

	background-color : rgba(0,0,0,1);
	font-family      : 'Roboto Mono', bold;
	font-size        : 12px;

	overflow: hidden;

	flex-direction   : column;
	transition: all 0.4s ease-out;

	
}
.sliderDiv {
  padding:0.2em;
  margin:0.2em;
  border:1px solid rgba(255,255,255,0.3);
  
}
.thumbBubble {
  background-color:rgba(250,250,250,0.3);
}
.thumbBubble  span{
  display:none;
}
input {
	margin-left: 20%;
	width:60%; 
	box-sizing: border-box; }

.thumbBubble.hovered  input{
  display:block;
}
#mainMenu {
	z-index: 10000;
	position: absolute;
	top: 0;
	left:0;
	width:100%;
	height:100%;
	background-color:black;

}
#footerInstr {
	color: rgba(240,240,240,0.8);
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
}

#mainMenu canvas {
	z-index: 1;
	position: absolute;
	top: 0;
	left:0;
	width:100%;
	height:100%;
	background-color:black;	
}
#mainMenu div {
	z-index: 1000;
	color:white;
}
.menuBut {
	width:50%;
	margin-left: 25%;
	text-align: center;
	height:50px;
	background-color:rgba(255,255,255,0.1);
	transition: all 0.4s ease-out;
	box-sizing: border-box;
	margin-top:1em;

	padding:1.5em;
}
.menuBut:hover {
	background-color:rgba(255,255,255,0);
	border:5px solid rgba(255,255,255,0.5);
}
#menuButs {
	position: absolute;
	z-index: 10000;
	display: none;
	top:50%;
	height:50%;
	width:100%;
}
#Title {
	position: absolute;
	top:20%;
	width:100%;
	text-align: center;
	font-size: 4vh;
}
.thumbBubble input {
  width:100%;
  margin:0;
  padding:0;
  text-align: center;
  display:block;
}
.zoom {
	position: absolute;
	box-sizing: border-box;
	width: 50px;
	height:50px;
	text-align: center;
	font-size: 1em;
	background-color: rgba(255,255,255,0.5);
	border-radius: 0.2em;
	padding:10px;
}
.zoom:hover {
	background-color: rgba(255,255,255,0.7);
}
.thumbBubble input:focus {
  display:block;
  background-color:rgba(0,0,0,0.2);
  color:rgba(240,240,240,1);
}
#contentDivs {
	margin-top:5px;
	border-top:5px solid rgba(50,50,255,0.5);
	justify-content: space-evenly;
	display: flex;
	flex-wrap: wrap;
}
.contentDiv {
	padding:0.2em;
	float: right;
	overflow: hidden;
	border:2px solid rgba(240,240,240,0.5);
	user-select: none;
	background-color:rgba(25,25,55,1);
	transition: all 0.4s ease-out;
}
.contentDiv img {
	position: absolute;
	left: 0px;
	top:10px;
}
.contentTop {
	width: 100%;
	height:40px;
	position: relative;
	transition: all 0.4s ease-out;
	cursor:pointer;
}
#instructions {
	display:none;
	width:50%;
	z-index: 99999999;
	position: absolute;
	top:25%;
	left:25%;
	height:50%;
	overflow: auto;
	background-color: rgba(50,50,50,1);
	border-radius: 1em;
	padding:2em;
	box-sizing: border-box;
	color:rgba(240,240,240,1);
	text-align: center;
	border:1px solid rgba(250,250,250,0.5);
	box-shadow: 0em 0.2em 0.1em 0.1em rgba(255,255,255,0.9);

}
.contentTop:hover {
	background-color: rgba(255,255,255,0.3);
}
.resetBut {
	background-color: rgba(50,50,50,0.5);
	color:rgba(240,240,240,1);
	text-align: center;
}
.resetBut:hover {
	background-color: rgba(255,255,255,0.8);
}

.contentDivTitle {
	text-align: center;
	color:rgba(240,240,240,1);
	background-color: rgba(45,45,75,1);
	padding:0.4em;
	transition: all 0.4s ease-out;

}
.contentDivSubTitle {
	text-align: right;
	font-size: 0.8em;
	color:rgba(240,240,240,1);
	background-color: rgba(45,45,75,1);
	
	transition: all 0.4s ease-out;
}
canvas {
	border:3px solid rgba(25,25,100,0.5);
	z-index: -1;
}

.label {
	text-align: center;
	color:rgba(240,240,240,1);
}