/* General Styles */
body {
	height: 100%;
	background-color: #000;
	margin: 0;
	padding: 0;
}

/* Terminal Container */
#terminal {
	width: 750px;
	height: 460px;
	background-image: url('../img/bg-off.png');
	font-family: monospace;
	font-weight: bold;
	color: #33dd88;
	font-size: 12pt;
	overflow: hidden;
	z-index: 10;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 87px;
}

/* Terminal Background */
#terminal-background {
	background-image: url('../img/screenOn.png');
	width: 930px;
	height: 700px;
	z-index: -20;
	margin: 0 auto;
	position: relative;
}

/* Terminal Background Off Image */
#terminal-background-off {
	position: relative;
	margin: 0;
	visibility: visible;
}

/* Terminal Interior */
#terminal-interior {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 11;
}

/* Column Styles */
.column {
	float: left;
	margin-top: 30px;
	height: 350px;
	top: 90px;
	margin-left: 20px;
}

/* Specific Column Widths */
.pointers {
	width: 51px;
}

.words {
	width: 171px;
}

/* Character Styles */
.character {
	padding: 0 2px;
	cursor: pointer;
}


.character-hover {
	background-color: #33dd88;
	color: #112211;
}

/* hyperlink shiz */
a {
	text-decoration: none;
	color: #33dd88;
}

/* hyperlink hover shiz */
a:hover {
	text-decoration: none;
	background-color: #33dd88;
	color: #112211;
}

.header {
	background-color: #33dd88;
	color: #112211;
}



/* Console */
#console {
	width: 10%;
	letter-spacing: 3px;
	float: left;
	margin-left: 10px;
	margin-top: -12px;
}

/* Output */
#output {
	width: 187px;
	height: 300px;
	letter-spacing: 3px;
	float: left;
	margin-left: 10px;
	margin-top: 30px;
}

/* Info */
#info, #attempts {
	width: 80%;
	margin-left: 20px;
	position: relative;
	top: 20px;
}

#info {
	height: 60px;
}

#attempts {
	height: 30px;
}

/* Column Positions */
#column1 {
	left: 20px;
}

#column2 {
	left: 91px;
}

#column3 {
	left: 282px;
}

#column4 {
	left: 353px;
}

/* Admin Alert */
#adminalert {
	position: relative;
	margin: 300px auto 0;
	text-align: center;
	width: 100%;
}

/* Menu paddification */
.paddification {
	padding: 5px 10px;
}

/* Alert Text */
.alert-text {
	display: inline;
}

/* Power Button */
#powerbutton {
	position: absolute;
	width: 54px;
	height: 50px;
	left: calc(50% + 255px);
	top: 610px;
	cursor: pointer;
	z-index: 200;
}