body {
	background-color: #cdcdcd;
}

h1,h2 {
	margin: 0px;
}

#board {
	background-color: black;
}

.container {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: fixed;
	top: 0px;
	left: 0px;
}

.container > div {
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 1;
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
}

.console {
	background-color: black;
	height: 100%;
}

button {
	border-radius: 10px;
	-webkit-border-radius: 10;
	-moz-border-radius: 10;
  
	padding: 10px;
	background: red;
	color: white;
	font-weight: bold;
	border: none;
	
	box-shadow: 2px 2px 9px #666666;
	-webkit-box-shadow: 2px 2px 9px #666666;
	-moz-box-shadow: 2px 2px 9px #666666;
}

.menu {
	overflow: scroll;
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	background: white;
	max-height: 100%;
	width: 30%;
}

table {
	width: 100%;
}

table, th, td {
	border: 1px solid #cdcdcd;
}

th {
	background-color: rgba(25, 181, 254,1.0);
	padding: 5px;
	color: white;
}

th, td {
	padding: 4px;
}

.menu > div {
	padding: 10px;
	text-align: center;
	border-bottom: 2px solid #cdcdcd;
}

#canvas-container {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	box-sizing: border-box;
	
	max-height: 100%;
	width: 70%;
}

.lithium {
	background-color: rgba(204,0,0,1.0);
}

.stroncium {
	background-color: rgba(255,0,0,1.0);
}

.calcium {
	background-color: rgba(255,127,0,1.0);
}

.cuprum {
	background-color: rgba(51,153,255,1.0);
}

.aluminium {
	background-color: rgba(192,192,192,1.0);
}

.baryum {
	background-color: rgba(51,204,51,1.0);
}

.natrium {
	background-color: rgba(255, 255, 26, 1.0);
}

.magnesium {
	background-color: rgba(245, 245, 245, 1.0);
}

.titan {
	background-color: rgba(204,0,0,1.0);
}

.amethyst {
	background-color: rgba(155, 89, 182, 1.0);
}

.emerald {
	background-color: rgba(46, 204, 113,1.0);
}

.turquoise {
	background-color: rgba(26, 188, 156,1.0);
}

.alizarin {
	background-color: rgba(231, 76, 60,1.0);
}

.sunset {
	background-color: rgba(246, 71, 71,1.0);
}

.jungle {
	background-color: rgba(38, 194, 129,1.0);
}

.malibu {
	background-color: rgba(107, 185, 240,1.0);
}

.jellybeans {
	background-color: rgba(37, 116, 169,1.0);
}

.eucalyptus {
	background-color: rgba(38, 166, 91,1.0);
}

.dodger {
	background-color: rgba(25, 181, 254,1.0);
}

.razzmatazz {
	background-color: rgba(219, 10, 91,1.0);
}

.steel {
	background-color: rgba(75, 119, 190,1.0);
}

.bold  {
	font-weight: bold;
}