@charset "UTF-8";
/* CSS Document */
body, html {
	width: 100vw;
	height: 100vh;
	font-family: 'Jaldi', sans-serif;
	margin: 0px;
	padding: 0px;
	line-height: 0.8;
}
	
/* overlay */
	#overlay {
		width: 100%;
		height: 100%;
		left: 0px;
		top: 0px;
		position: absolute;
		overflow: hidden;
		z-index: 99;
		
	}
	.animation {
		position: absolute;
		font-size: 15vh;
		opacity: 0;
		top: 50%;
		transform: translateX(-50%);
		-webkit-animation: linear 1 alternate;
		-webkit-animation-name: left-to-right;
		-webkit-animation-duration: 0.5s;
	}
	@-webkit-keyframes left-to-right {
		0% {
			left: 40%;
			opacity: 0;
		}
		50% {
			opacity: 1;
		}
		100% {
			left: 60%;
			opacity: 0;
		}
	}
	
/* pagelayout */
	.text, #sound {
		display: none;
	}
	#container {
		width: 100vw;
		height: 100vh;
		display: block;
		overflow: hidden;
	}
	#indicator {
		width: 100%;
		height: 30%;
		color: #eeeeee;
        display: flex;
		flex-wrap: wrap;
        vertical-align: middle;
	}
	.vertcenter {
		margin: auto;
        text-align: center; 
	}
	#message {
		font-size: 8vh;
		font-weight: bold;
	}
	#current {
		font-size: 3vh;
		font-weight: bold;
	}
	#current.controller {
		font-size: 6vh;
		font-weight: bold;
	}
	#store.controller {
		font-size: 3vh;
	}
	#store {
		font-size: 1vh;
	}
	#indicator.unknown {
		background-color:#0063FF;
	}
	#indicator.access {
		background-color: #2F9000;	
	}
	#indicator.block {
		background-color: #D00000;
	}
	#content {
		width: 100%;
		height: 70%;
	}
	#header {
		width: 100%;
		box-sizing: border-box;
		padding: 5%;
		background-color: #FFC900;
		text-transform: uppercase;
	}
	#title {
		font-size: 7vh;
		font-weight: bold;
	}
	#subtitle {
		font-size: 2vh;
		
	}
	
	#rules {
		font-family: 'Jaldi', sans-serif;
		font-size: 4vh;
		font-weight: bold;
		text-transform: uppercase;
		font-stretch: condensed;
		letter-spacing: -1px;
	}
	
	#rules i {
		font-size: 5vh;
	}
	
	#rules li {
		margin: 10% 0% 0% 0%;
		padding: 0% 0% 0% 5%;
	}
	
	#rules ul {
		margin-left: 15%;
	}
	
	#rules span {
		color: #FFC900;
	}
	
	#footer {
		position: absolute;
		bottom: 0px;
		left: 0px;
		width: 100%;
		height: 15vh;
		background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Jumbo_Logo.svg/1599px-Jumbo_Logo.svg.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
#buttons {
	text-align: center;
	vertical-align: middle;
	display: flex;
	height: 100%;
	background-color: #CCCCCC;
	font-size: 10vh;
	line-height: 10vh;
}
#buttons p {
	margin: 0px;
}
#in, #out {
	width: 50%;
	box-sizing: border-box;
	border: 2px solid #000000;
	margin: 2px;
	background-color: #AAAAAA;
	border-radius: 7px;
	display: flex;
	vertical-align: middle;
}