@font-face {
    font-family: PrintChar21;
    src: url("/PrintChar21.ttf");
}

body {
	background: #000;
	color: #F80;
	text-shadow: 0px 0px 10px #F80;
	font-family: monospace;
	font-size: 1.25rem;
	overflow: hidden;
	transition: 0.5s ease;
}

.inverse {
	background: #F80;
	color: #000;
}

.ucase {
	text-transform: uppercase;
}

.bordered {
	border-top: 10px solid #333;
	border-left: 10px solid #666;
	border-bottom: 10px solid #333;
	border-right: 10px solid #666;
}

#menu {
	position: fixed;
	bottom: 10px;
	width: 100%;
	max-height: 20px; /* 70px; */
	overflow: hidden;
	text-align: center;
	z-index: 10;
}

#console {
	width: calc(100% - 30px);
	height: calc(90vh - 60px);
	overflow-x: hidden;
	padding: 10px;
}

.accessGranted, .accessDenied, .accessFailure{
	width: 300px;
	padding: 20px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -60px;
	margin-left: -150px;
	text-align: center;
}

.accessGranted {
	color: #0F0;
	text-shadow: 0px 0px 10px #0F0;
	background: #333;
	border: 1px solid #0F0;
}

.accessDenied {
	color: #F00;
	text-shadow: 0px 0px 10px #F00;
	background: #511;
	border: 1px solid #F00;
}

.accessFailure {
	color: #F80;
	text-shadow: 0px 0px 10px #F80;
	background: #211;
	border: 1px solid #F80;
}

::selection {
  background: #F80;
}

body::before {
  content: " ";
  display: block;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 1000;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}


.flicker::before {
  animation: flicker 0.10s infinite;
}

@keyframes flicker {
  0% {
    opacity: 0.75;
  }
  10% {
    opacity: 0.10;
  }
  20% {
    opacity: 0.33;
  }
  30% {
    opacity: 0.66;
  }
  40% {
    opacity: 0.20;
  }
  50% {
    opacity: 0.95;
  }
  60% {
    opacity: 0.50;
  }
  70% {
    opacity: 0.20;
  }
  80% {
    opacity: 0.66;
  }
  90% {
    opacity: 0.10;
  }
  100% {
    opacity: 0.33;
  }
}


a {
  text-decoration: none;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
}
::-webkit-scrollbar-thumb:hover {
    background: #d60; 
}
