body {
	background-color:#C3C3C3;
	text-align:center;
	color:#569241;
	color:#FFFFFF;
	font-family:courier,arial,helvetica;
	font-weight: bold;
	background-size: 100px 100px;
	//background-image:
	//	linear-gradient(to right, grey 1px, transparent 1px),
    //linear-gradient(to bottom, grey 1px, transparent 1px);
}

input{
	border-color:grey;
	background-color: #999999;
	text-align:center;
	color: white;
	font-family:courier,arial,helvetica;
	font-weight: normal;
	font-size:30px;
	height: 50px;
}

select{
	border-color:grey;
	background-color: #999999;
	text-align:center;
	color: white;
	font-family:courier,arial,helvetica;
	font-weight: normal;
	font-size:30px;
	height: 50px;
}

input:focus{
	border-color:grey;
	background-color: #999999;
	text-align:center;
	color: white;
	font-family:courier,arial,helvetica;
	font-weight: normal;
	font-size:30px;
	height: 50px;
}

input.loginCode{
	border-color:grey;
	background-color: #999999;
	text-align:center;
	color: white;
	font-family:courier,arial,helvetica;
	font-weight: normal;
	font-size:30px;
	height: 50px;
	text-transform: lowercase;
}

input.admin {
	border-color:green;
	border-width:1px;
	background-color: black;
	text-align:center;
	color: green;
	font-family:courier,arial,helvetica;
	font-weight: normal;
	font-size:30px;
	height: 50px;
}

input.admin:focus {
	border-color:green;
	border-width:1px;
	background-color: black;
	text-align:center;
	color: green;
	font-family:courier,arial,helvetica;
	font-weight: normal;
	font-size:30px;
	height: 50px;
}

input.admin:disabled{
	border-color:grey;
	border-width:1px;
	background-color: #999999;
	text-align:center;
	color: white;
	font-family:courier,arial,helvetica;
	font-weight: normal;
	font-size:30px;
	height: 50px;
}

button.admin
{
	display: inline-block;
	padding: 15px 25px;
	font-size: 30px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: white;
	width: 100px;
	height: 50px;
	background-color: lightgreen;
	border: none;
	border-radius: 15px;
	box-shadow: 0 9px green;
	margin:5px;
}

button.admin:hover
{
	transform: translateY(4px);
	box-shadow: 0 5px green;
}

button.admin:disabled
{
	background-color: #999999;
	transform: translateY(4px);
	box-shadow: 0 5px #6B6B6B;
}

button {
	font-family:courier,arial,helvetica;
	font-weight: bold;
}

.nameDiv {
	position: absolute;
	display: block;
	top:0px;
	height:100px;
	width:100%;
}

.timeDiv {
	position: absolute;
	display: block;
	font-size:80px;
	top:100px;
	height:100px;
	width:100%;
}

.buttonsDiv {
	position: absolute;
	display: block;
	font-size:50px;
	top:200px;
	height:80px;
	width:100%;
}

.contentDiv {
	position: absolute;
	display: block;
	top:330px;
	bottom:170px;
	overflow:auto;
	width:100%;
}

.hackingDiv {
	position: absolute;
	display: block;
	bottom:20px;
	border-radius: 30px;
	width:100%;
}

.loginWindow {
	position: absolute;
	display: block;
	margin:0px;
	padding-top:0px;
	top:0px;
	left:0px;
	height:100%;
	width:100%;
	bottom:0px;
	z-index:2;
	background-color:#C3C3C3;
}

.popupWindow {
	position: absolute;
	display: block;
	margin: 0px;
  	margin-top: 0px;
	padding: 20px;
	border: solid;
	border-width:3px;
	top:40%;
	left:5%;
	right:5%;
	visibility: hidden;
	background-color:#C3C3C3;
	overflow:auto;
	vertical-align:middle;
	border-radius: 30px;
	border-style: solid;
	border-color:#999999;
}

.successNotification {
	position: absolute;
	display: block;
	margin: 0px;
	padding: 0px;
	padding-top: 20px;
	padding-bottom: 20px;
	border: solid;
	border-color:#35AC01;
	color:#327D12;
	border-width:3px;
	top:42%;
	bottom:42%;
	left:20%;
	width:60%;
	background-color:#66D138;
	overflow:none;
	vertical-align:middle;
	font-size: 100px;
	border-radius: 45px;
	opacity:0;
	visibility:hidden;
}

.failNotification {
	position: absolute;
	display: block;
	margin: 0px;
	padding: 0px;
	padding-top: 70px;
	padding-bottom: 70px;
	border: solid;
	border-color:#AC1616;
	color:#912C2C;
	border-width:3px;
	top:42%;
	bottom:42%;
	left:20%;
	width:60%;
	background-color:#DE2222;
	overflow:none;
	vertical-align:middle;
	font-size: 100px;
	border-radius: 45px;
	opacity:0;
	visibility:hidden;
}

.popupTitle
{
	font-size:30px;
	padding-top:50px;
	padding-bottom:10px;
}
.closePopUpBtn
{
	display: inline-block;
	position:absolute;
	font-size: 40px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	right:0px;
	color: #fff;
	width: 50px;
	height: 50px;
	background-color: #CA0000;
	border: none;
	border-radius: 15px;
	box-shadow: 0 9px #710101;
	margin-top:-15px;
	margin-right:10px;
	
}

.closePopUpBtn:hover {
	background-color: #CA0000;
	box-shadow: 0 5px #710101;
	transform: translateY(4px);
}

.popupContent
{
	font-size:20px;
}

.answerSubmitButton
{
	display: inline-block;
	padding: 5px 5px 5px 5px;
	font-size: 40px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	width: 250px;
	height: 75px;
	background-color: #61D129;
	border: none;
	border-radius: 15px;
	box-shadow: 0 9px #4A9C20;
	margin-top:5px;
	margin-right:5px;
	
}

.answerSubmitButton:hover {
	background-color: #61D129;
	box-shadow: 0 5px #4A9C20;
	transform: translateY(4px);
}

.adminButtons
{
	display: inline-block;
	padding: 15px 25px;
	font-size: 30px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	width: 30%;
	height: 80px;
	background-color: #999999;
	border: none;
	border-radius: 15px;
	box-shadow: 0 9px #6B6B6B;
	margin-bottom:20px;
}

.adminButtons:hover
{
	background-color: #999999;
	transform: translateY(4px);
	box-shadow: 0 5px #6B6B6B;
}

.adminButtons:active
{
	background-color: #999999;
	transform: translateY(4px);
	box-shadow: 0 5px #6B6B6B;
}

.hackButton
{
	display: inline-block;
	padding: 15px 25px;
	font-size: 40px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	width: 30%;
	height: 100px;
	background-color: #CA0000;
	border: none;
	border-radius: 15px;
	box-shadow: 0 9px #710101;
	margin-top:10px;
	
}

.hackButton:hover {
	background-color: #CA0000;
	transform: translateY(4px);
	box-shadow: 0 5px #710101;
}

.hackButton:active {
	background-color: #CA0000;
	transform: translateY(4px);
	box-shadow: 0 5px #710101;
}

button.logoutButton {
	display: inline-block;
	float:left;
	padding: 15px 25px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	width: 100px;
	height: 100px;
	background-color: #999999;
	border: none;
	border-radius: 15px;
	margin-top:10px;
	box-shadow: 0 9px #6B6B6B;
}

.mainButtons
{
	display: inline-block;
	padding: 15px 25px;
	font-size: 40px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	width: 30%;
	height: 100px;
	background-color: #999999;
	border: none;
	border-radius: 15px;
	box-shadow: 0 9px #6B6B6B;
}

.mainButtons:hover {
	background-color: #999999;
	transform: translateY(4px);
	box-shadow: 0 5px #6B6B6B;
}

.mainButtons:active {
	background-color: #999999;
	box-shadow: 0 5px #6B6B6B;
	transform: translateY(4px);
}

.quad1 {
	display: inline-block;
	padding: 15px 25px;
	font-size: 50px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: black;
	height:150px;
	width:600px;
	background-color: #FDBABA;
	border: none;
	border-radius: 40px;
	box-shadow: 0 9px #A57A7A;
	margin-bottom:15px;
	margin-top:15px;
}

.quad1:hover {
	background-color: #FDBABA;
	transform: translateY(4px);
	box-shadow: 0 5px #A57A7A;
}

.quad1:disabled {
	opacity:40%;
}

.quad2 {
	display: inline-block;
	padding: 15px 25px;
	font-size: 50px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: black;
	height:150px;
	width:600px;
	background-color: #C2FFF6;
	border: none;
	border-radius: 40px;
	box-shadow: 0 9px #759994;
	margin-bottom:15px;
}

.quad2:hover {
	background-color: #C2FFF6;
	transform: translateY(4px);
	box-shadow: 0 5px #759994;
}

.quad2:disabled {
	opacity:40%;
}

.quad3 {
	display: inline-block;
	padding: 15px 25px;
	font-size: 50px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: black;
	height:150px;
	width:600px;
	background-color: #BEFFB6;
	border: none;
	border-radius: 40px;
	box-shadow: 0 9px #7FA87A;
	margin-bottom:15px;
}

.quad3:hover {
	background-color: #BEFFB6;
	transform: translateY(4px);
	box-shadow: 0 5px #7FA87A;
}

.quad3:disabled {
	opacity:40%;
}



.quad4 {
	
	display: inline-block;
	padding: 15px 25px;
	font-size: 50px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: black;
	height:150px;
	width:600px;
	background-color: #F8F4A1;
	border: none;
	border-radius: 40px;
	box-shadow: 0 9px #A9A670;
	margin-bottom:15px;
}

.quad4:hover {
	background-color: #F8F4A1;
	transform: translateY(4px);
	box-shadow: 0 5px #A9A670;
}

.quad4:disabled {
	opacity:40%;
}


.quad0 {
	
	display: inline-block;
	padding: 15px 25px;
	font-size: 50px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: white;
	height:150px;
	width:600px;
	border-width:4px;
	border: 4px solid white;
	background-color: black;
	border-radius: 40px;
	box-shadow: 0 9px black;
	margin-bottom:15px;
}

.quad0:hover {
	background-color: black;
	transform: translateY(4px);
	box-shadow: 0 5px black;
}

.quad0:disabled {
	opacity:40%;
}

.rRogueBar
{
	position: absolute;
	display: block;
	bottom:140px;
	height:20px;
	left:0px;
	width:25%;
	background-color:#FDBABA;
}

.bRogueBar
{
	position: absolute;
	display: block;
	bottom:140px;
	height:20px;
	left:25%;
	width:25%;
	background-color:#C2FFF6;
}

.gRogueBar
{
	position: absolute;
	display: block;
	bottom:140px;
	height:20px;
	left:50%;
	width:25%;
	background-color:#BEFFB6;
}

.yRogueBar
{
	position: absolute;
	display: block;
	bottom:140px;
	height:20px;
	left:75%;
	width:25%;
	background-color:#F8F4A1;
}
