/* 404.css - COMPLETE WORKING VERSION */
@keyframes cursor-blink {
	0% { opacity: 0; }
	50% { opacity: 1; }
	100% { opacity: 0; }
}

body {
  background-color: black;
  margin: 0;
  padding: 0;
  font-family: 'Andale Mono', monospace;
  overflow: hidden;
}

.container {
	position: relative;
	min-height: 100vh;
	min-width: 100vw;
	background-color: black;
	z-index: 2;
	padding: 4rem;
	box-sizing: border-box;
}

.four-oh-four-form {
	opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.four-oh-four-form input.input-404 {
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	border: none;
}

.terminal {
	position: relative;
	color: #1ff042;
}

.prompt {
	display: block;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.9em;
	letter-spacing: 0.15em;
	white-space: pre-wrap;
	text-shadow: 0 0 2px rgba(31, 240, 66, 0.75);
	line-height: 1;
	margin-bottom: 0.75em;
}

.prompt:before {
	content: '> ';
	display: inline-block;
}

.prompt.output.new-output {
	display: inline-block;
	position: relative;
}

.prompt.output.new-output:after {
	display: inline-block;
	vertical-align: -0.15em;
	width: 0.75em;
	height: 1em;
	margin-left: 5px;
	background: #1ff042;
	box-shadow: 
		1px 1px 1px rgba(31, 240, 66, 0.65), 
		-1px -1px 1px rgba(31, 240, 66, 0.65), 
		1px -1px 1px rgba(31, 240, 66, 0.65), 
		-1px 1px 1px rgba(31, 240, 66, 0.65);
	animation: cursor-blink 1.25s steps(1) infinite;
	content: '';
}
