@import "https://fonts.googleapis.com/css?family=Inconsolata";
html {
  min-height: 100%;
}

.hidden {
  display: none;
}

body {
  box-sizing: border-box;
  height: 100%;
  background-color: #000000;
  background-image: radial-gradient(rgb(0, 0, 0), #071705),
    url("https://media.giphy.com/media/oEI9uBYSzLpBK/giphy");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Inconsolata", Helvetica, sans-serif;
  font-size: 1.5rem;
  color: #047400 ;
  text-shadow: 0 0 1ex #047400 , 0 0 2px #047400 ;
}

.noise {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("https://media.giphy.com/media/oEI9uBYSzLpBK/giph");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.02;
}

.overlay {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  background-size: auto 4px;
  z-index: 1;
}

.overlay::before {
  content: "";
  pointer-events: none;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    0deg,
    transparent 0%,
    #035000  2%,
    #047400  3%,
    #035000  3%,
    transparent 100%
  );
  background-repeat: no-repeat;
  -webkit-animation: scan 7.5s linear 0s infinite;
  animation: scan 7.5s linear 0s infinite;
}

@-webkit-keyframes scan {
  0% {
    background-position: 0 -200vh;
  }
  35%,
  100% {
    background-position: 0 100vh;
  }
}

@keyframes scan {
  0% {
    background-position: 0 -200vh;
  }
  35%,
  100% {
    background-position: 0 100vh;
  }
}
.terminal {
  box-sizing: inherit;
  position: absolute;
  height: 1 00%;
  width: 100%;
  max-width: 100%;
  padding: 4rem;
  padding-top: 0;
  text-transform: uppercase;
}

h1 {
  margin-top: 0;
}

.output {
  color: #047400 ;
  text-shadow: 0 0 1px #656209, 0 0 2px rgba(255, 255, 255, 0.8);
}

.refinery {
  position: fixed;
  display: flex;
  align-content: center;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  bottom: 0;
}

.logo {
  display: flex;
  position: relative;
  justify-content: center;
  z-index: 4;
}

.output::before {
  content: "> ";
}

input {
  border: none;
  width: 90%;
  background: none;
  font-family: "Inconsolata", Helvetica, sans-serif;
  font-size: 1.5rem;
}

input:focus {
  border: none;
  outline: none;
}

.Ter_Input {
  width: 75%;
}

.input::before {
  content: "🟩 ";
}

/*
.input {
  color: rgba(192, 255, 192, 0.8);
  text-shadow:
      0 0 1px rgba(51, 255, 51, 0.4),
      0 0 2px rgba(255, 255, 255, 0.8);
}

.input::before {
  content: "🟩 ";
}
*/
a {
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}

a::before {
  content: "[";
}

a::after {
  content: "]";
}
button[type="submit"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: none;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
