body{
	margin:0px;
}

#gamebody{
	width:100vw;
	height:100vh;
	background:#000;
	color:#fff;
}

#tablet{
	border:1vw solid #333;
	height:80vh;
	width:30vw;
	border-top-left-radius:20vh;
	border-top-right-radius:20vh;
	padding-top:15vh;
	padding-left:2vw;
	margin-left:2vw;
	font-size:40px;
	float:left;
}
#tiles{
	float:left;
}

.activelaw{
	animation: rainbow 2.5s linear;
	animation-iteration-count: infinite;
}
.activetablet{
	animation: rainbow-bg 4.5s linear;
	animation-iteration-count: infinite;
}

@keyframes rainbow-bg{
		100%,0%{
			background-color: rgb(255,0,0);
		}
		8%{
			background-color: rgb(255,127,0);
		}
		16%{
			background-color: rgb(255,255,0);
		}
		25%{
			background-color: rgb(127,255,0);
		}
		33%{
			background-color: rgb(0,255,0);
		}
		41%{
			background-color: rgb(0,255,127);
		}
		50%{
			background-color: rgb(0,255,255);
		}
		58%{
			background-color: rgb(0,127,255);
		}
		66%{
			background-color: rgb(0,0,255);
		}
		75%{
			background-color: rgb(127,0,255);
		}
		83%{
			background-color: rgb(255,0,255);
		}
		91%{
			background-color: rgb(255,0,127);
		}
}

@keyframes rainbow{
		100%,0%{
			color: rgb(255,0,0);
		}
		8%{
			color: rgb(255,127,0);
		}
		16%{
			color: rgb(255,255,0);
		}
		25%{
			color: rgb(127,255,0);
		}
		33%{
			color: rgb(0,255,0);
		}
		41%{
			color: rgb(0,255,127);
		}
		50%{
			color: rgb(0,255,255);
		}
		58%{
			color: rgb(0,127,255);
		}
		66%{
			color: rgb(0,0,255);
		}
		75%{
			color: rgb(127,0,255);
		}
		83%{
			color: rgb(255,0,255);
		}
		91%{
			color: rgb(255,0,127);
		}
}

.clue{
	border:2px solid purple;
	border-raidus:2px;
	height:200px;
	width:200px;
	margin:5px;
	padding:5px;
	float:left;
	color:#fff;
	-webkit-text-stroke: 1px black;
}
.clueboldborder{
	border:2px solid #3f5;
	background: none;
	-webkit-text-stroke: 0px;
}
.cluenumber{
	font-size:8em !important;
	font-weight:bold;
	margin-left:20px;
	display:none;
}
.xxlt{
	font-size:2.6em;
}
.xlt{
	font-size:1.6em;
}
.lt{
	font-size:1em;
}
.smt{
	font-size:0.7em;
}

.cluehidden .clueinside{
	display:none;
}
.cluehidden .cluenumber{
	display:block;
}
.cluesolved{
	border: 2px solid #000;
	background:none;
}
.cluesolved .clueinside{
	display:none;
}
.cluesolved .cluenumber{
	display:none;
}