body {
	font-family: "Lucida Console", monospace;
	margin: 0;
	padding: 0;
	font-size: 80%;
	background: url(img/bg.png) no-repeat center center fixed;
	background-size: cover;
}

a {
	color: white !important;
}

#hidden-textarea{
	visibility: hidden;
	z-index: -100;
	position: absolute;
}

#console-container {
	position: absolute;
	margin: 0;
	padding: 10px;
	background-color: rgba(33, 33, 33, 0.8);
	color: rgb(0, 255, 100);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	word-wrap: break-word;
	overflow-y: auto;
}

.default-init-line {
	color: rgb(30, 255, 150);
}

.default-command-line {
	color: rgb(0, 255, 100);
}

.cursor {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {  
  50% { opacity: 0; }
}

#loading-overlay {
	position: absolute;
	height: 100%;
	width: 100%;
	margin: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	visibility: hidden;
	background: url("img/loading.gif") no-repeat center center;
	background-size: 80px 80px;
	z-index: 1;
}