body {
	margin: 0;
	background-color: #000;
	color: #fff;
	font-family: Monospace;
	font-size: 13px;
	line-height: 24px;
}

a {
	color: #ff0;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

canvas {
	display: block;
}

#info {
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	z-index: 1;
	/* TODO Solve this in HTML */
}

.dg.ac {
	z-index: 2 !important;
	/* TODO Solve this in HTML */
}

.tooltip {
	position: relative;
	display: inline-block;
	height: 40px;
	
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: rgb(85,191,243);
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	/* Position the tooltip */
	position: absolute;
	z-index: 1;
	top: 10%;
	right: 115%;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}

.ul-custom{
	list-style: none; padding-left: 0px; border: 1px solid black; border-radius: 5px;
}

.li-custom{
	margin: 5px;
}