* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	font-size: 110%;
	color: #FFFFFF;
  font: 2.3rem Inconsolata, monospace;
  text-shadow: 0 0 5px #C8C8C8;
  background-color: #000000;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.wrapper { 
  height: 100%;
  width: 100%;
  left:0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
	background: linear-gradient(124deg, #000000, #000735);
  background-size: 1800% 1800%;
  -webkit-animation: space 60s ease-in-out infinite;
  -z-animation: space 60s ease-in-out infinite;
  -o-animation: space 60s ease-in-out infinite;
  animation: space 60s ease-in-out infinite;
}

@-webkit-keyframes space {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-moz-keyframes space {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-o-keyframes space {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@keyframes space { 
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}

.prompt {
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.prompt:after {
	content: '\2759';
  display: inline-block;
	animation: blink 1s steps(5, start) infinite;
}

@media screen and (max-width: 601px) {
  .prompt {
    font-size: 1.8rem;
  }
}

@keyframes blink {
  to {
    visibility: hidden;
  }
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 2px);
  pointer-events: none;
}

::selection {
  background: #0080FF;
  text-shadow: none;
}