html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
h1 {
    font-size: 42px;
    font-family: "tron";
}
span, .clickMe {
  -moz-user-select: none; /* Mozilla Firefox */
  -ms-user-select: none; /* Internet Explorer (не поддерживается) */
  -o-user-select: none; /* Opera Presto (не поддерживается) */
  -webkit-user-select: none; /* Google Chrome, Opera Next, Safari */
}


.text-white {
  color: #ffffff;
}
.text-light {
  color: rgba(255, 255, 255, 0.7);
}
/* preloader --> */
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 2002;
  transition: .5s;
}
.loader {
  width: 100px;
  height: 100px;
  /* border: 10px solid white;
  border-radius: 50%;
  border-top-color: blue; */
  background-image: url(../img/ball-triangle.svg);
  background-repeat: no-repeat;
  background-position: cover;
  background-size: 100%;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  /* animation: 2s spin infinite linear; */
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
}
/* @keyframes spin {
  from {
    transform: translate(-50%) rotate(0deg);
  }
  to {
    transform: translate(-50%) rotate(360deg);
  }
} */
.loadPercent {
  color: #fff;
  font-family: "avenger";
  font-size: 19px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loadLine {
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #fff;
  bottom: -60px;
}
/* <-- preloader */


/* prestart animation --> */
.canvasWrapper {
  transition: .3s;
  -o-transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  position: fixed;
  z-index: 2001;
}
.preStartCanvas.active {
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: #000000;
}
.canvasWrapper canvas {
  background-color: #000000;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed !important;
}
/* <-- prestart animation */
.aim, .smallAimWrap, .halfSquare {
  transition: .5s;
  -o-transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
}
.aim {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #56f5fd;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  cursor: pointer;
  box-shadow: 0px 0px 8px 0px #56f5fd, inset 0px 0px 8px 0px #56f5fd;
  opacity: 0.9;
}
.smallAimWrap {
  position: relative;
  height: 100%;
}
.halfSquare {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 4px;
  background-color: #000;
}
.halfSquare.first {
  top: 2px;
  transform: rotate(40deg);
  left: 0;
  display: none;
}
.halfSquare.second {
  top: 40px;
  transform: rotate(-47deg);
  left: 0;
  display: none;
}
.halfSquare.third {
  top: 2px;
  transform: rotate(-50deg);
  right: -2px;
  left: auto;
  display: none;
}
.halfSquare.fourth {
  top: 2px;
  transform: rotate(40deg);
  left: 0;
  display: none;
}
.dot {
  background-color: #8abee8;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 6px 2px #8abee8;

  transition: 1.5s;
  -o-transition: 1.5s;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
}
.dot.active {
  transition: width 2s;
  -o-transition: width 2s;
  -moz-transition: width 2s;
  -webkit-transition: width 2s;
  width: 2400px;
}
.dot.active:after {
  content: '';
  background-color: #8abee8;
  box-shadow: 0px 0px 13px 12px #8abee8, -1px 0px 20px 0px #ffffff;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translate(-50%);
}
.brackets {
  height: 50px;
  /* border: 4px solid #56f5fd; */
  width: 50px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #56f5fd;
  border-right: 4px solid #56f5fd;
  border-radius: 50%;
  top: 23px;
  left: 23px;
  transition: .5s;
  -o-transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  position: absolute;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 8px 0px #56f5fd, inset 0px 0px 8px 0px #56f5fd;

  -webkit-animation-name: spinBack;
  -webkit-animation-duration: 5000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: spinBack;
  -moz-animation-duration: 5000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: spinBack;
  -ms-animation-duration: 5000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  animation-name: spinBack;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.blackSeparators {
  height: 100%;
  transition: .5s;
  -o-transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;

  -webkit-animation-name: spin;
  -webkit-animation-duration: 4000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.89, -0.4, 0.51, 1.45);

  -moz-animation-name: spin;
  -moz-animation-duration: 4000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: cubic-bezier(0.89, -0.4, 0.51, 1.45);

  -ms-animation-name: spin;
  -ms-animation-duration: 4000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: cubic-bezier(0.89, -0.4, 0.51, 1.45);

  animation-name: spin;
  animation-duration: 4000ms;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.89, -0.4, 0.51, 1.45);
}
@-ms-keyframes spin { 
  from { 
      -ms-transform: rotate(0deg); 
  } to { 
      -ms-transform: rotate(360deg); 
  }
}
@-moz-keyframes spin { 
  from { 
      -moz-transform: rotate(0deg); 
  } to { 
      -moz-transform: rotate(360deg); 
  }
}
@-webkit-keyframes spin { 
  from { 
      -webkit-transform: rotate(0deg); 
  } to { 
      -webkit-transform: rotate(360deg); 
  }
}
@keyframes spin { 
  from { 
      transform: rotate(0deg); 
  } to { 
      transform: rotate(360deg); 
  }
}
@-ms-keyframes spinBack { 
  from { 
      -ms-transform: rotate(0deg); 
  } to { 
      -ms-transform: rotate(-360deg); 
  }
}
@-moz-keyframes spinBack { 
  from { 
      -moz-transform: rotate(0deg); 
  } to { 
      -moz-transform: rotate(-360deg); 
  }
}
@-webkit-keyframes spinBack { 
  from { 
      -webkit-transform: rotate(0deg); 
  } to { 
      -webkit-transform: rotate(-360deg); 
  }
}
@keyframes spinBack { 
  from { 
      transform: rotate(0deg); 
  } to { 
      transform: rotate(-360deg); 
  }
}

.sep {
  background-color: #000;
  width: 25px;
  height: 5px;
  position: absolute;
}
.sep.first {
  top: 14px;
  transform: rotate(40deg);
  left: 0;
}
.sep.second {
  top: 14px;
  right: 0px;
  transform: rotate(-40deg);
}
.sep.third {
  top: auto;
  transform: rotate(-40deg);
  bottom: 14px;
  left: 0;
}
.sep.fourth {
  transform: rotate(40deg);
  bottom: 14px;
  right: 0;
}
.hologram {
    position: absolute;
    bottom: 0;
    left: 200px;
}
.holoRays {
  width: 20px;
  box-shadow: 0 2px 10px 7px #56f5fd;
  position: relative;
}
.ray {
  position: absolute;
  height: 100px;
  top: -100px;
  /* background-color: rgba(86, 245, 253, .5); */
  background: #56f5fd;
  background: -moz-linear-gradient(transparent, rgba(86, 245, 253, 0.5));
  background: -webkit-linear-gradient(transparent, rgba(86, 245, 253, 0.5));
  background: linear-gradient(transparent, rgba(86, 245, 253, 0.5));

  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);

  
  -webkit-animation: blurify 4s steps(4) infinite;
  animation: blurify 4s steps(4) infinite;
}
.ray1 {
  left: -47px;
  transform: skew(40deg, 10deg);
  width: 37px;
}
.ray2 {
  transform: skew(-52deg, 10deg);
  left: 51px;
  width: 37px;

  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  -o-animation-delay: .5s;
  animation-delay: .5s;
}
.ray3 {
  transform: skew(-26deg, 0);
  left: 17px;
  width: 20px;

  -webkit-animation-delay: .8s;
  -moz-animation-delay: .8s;
  -o-animation-delay: .8s;
  animation-delay: .8s;
}
.ray4 {
  transform: skew(24deg, 10deg);
  left: -16px;
  width: 10px;

  -webkit-animation: uturn 4s steps(2) infinite;
  animation: uturn 4s steps(2) infinite;

  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.ray5 {
  transform: skew(-10deg, -8deg);
  left: 0px;
  width: 10px;

  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
  -o-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.ray6 {
  transform: skew(24deg, 10deg);
  left: -16px;
  width: 10px;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}


@-webkit-keyframes blurify { 
  50%, 100% {
      -moz-filter: blur(3px);
      -ms-filter: blur(3px);
      -webkit-filter: blur(3px);
      filter: blur(3px);
  }
  60% {
      -moz-filter: blur(3px);
      -ms-filter: blur(3px);
      -webkit-filter: blur(3px);
      filter: blur(3px);
  }
  80% {
      -moz-filter: blur(3.5px);
      -ms-filter: blur(3.5px);
      -webkit-filter: blur(3.5px);
      filter: blur(3.5px);
  }
  90% {
      -moz-filter: blur(3.8px);
      -ms-filter: blur(3.8px);
      -webkit-filter: blur(3.8px);
      filter: blur(3.8px);
  }
}
@keyframes blurify { 
  50%, 100% {
    -moz-filter: blur(3px);
    -ms-filter: blur(3px);
    -webkit-filter: blur(3px);
    filter: blur(3px);
  }
  60% {
      -moz-filter: blur(3px);
      -ms-filter: blur(3px);
      -webkit-filter: blur(3px);
      filter: blur(3px);
  }
  80% {
      -moz-filter: blur(3.5px);
      -ms-filter: blur(3.5px);
      -webkit-filter: blur(3.5px);
      filter: blur(3.5px);
  }
  90% {
      -moz-filter: blur(3.8px);
      -ms-filter: blur(3.8px);
      -webkit-filter: blur(3.8px);
      filter: blur(3.8px);
  }
}

@-webkit-keyframes uturn {
  0% {
    transform: skew(24deg, 27deg);
  }
  100% {
    transform: skew(9deg, 11deg);
  }
}
@keyframes uturn {
  0% {
    transform: skew(24deg, 27deg);
  }
  100% {
    transform: skew(9deg, 11deg);
  }
}




/* hover */

.aim:hover {
}
.aim:hover .dot {
  /* background-color: red; */
}
.aim:hover .halfSquare {
  opacity: 1;
}
.aim:hover .halfSquare.first {
  top: 35%;
  left: 35%;
}
.aim:hover .halfSquare.second {
  left: 65%;
  top: 35%;
}
.aim:hover .halfSquare.third {
  top: 65%;
  left: 65%;
}
.aim:hover .halfSquare.fourth {
  top: 65%;
  left: 35%;
}

.clickMe {
  position: absolute;
  left: -90px;
  bottom: 20px;
}
.holoName {
  position: relative;
}
.clickMe span, .holoName span {
  color: #4ddce4;
  font-size: 10px;
  text-transform: uppercase;
  font-family: 'avenger';
  text-shadow: 1px 1px 5px #4ddce4;
}
.clickMe .fa {
  color: #4ddce4;
  font-size: 9px;
  text-shadow: 1px 1px 5px #4ddce4;
}
.holoName .holoWrap {
  position: absolute;
  top: -140px;
  left: -90px;
  transform: skewX(30deg);
}
.holoName span {
  font-size: 40px;
  text-shadow: 1px 1px 10px #4ddce4, -1px 2px 0px #32878c, -4px 4px 0px #27696d;
}
.speedometr {
  position: absolute;
  bottom: 0;
  right: 200px;
  width: 200px;
  height: 80px;
  background-color: #090808;
  border-radius: 50% 50% 0 0;
  box-shadow: 6px 2px 0px 1px #323232, 9px 4px 0px 1px #424242;
  transform: skew(-39deg, 0deg);
  padding: 20px 10px 10px;
  border-top: 2px solid #3b4c4d;
}
.speedCircle {
  width: calc(100% - 20px);
  height: 30px;
  background-color: #56f5fd;
  margin: 0 auto;
  border-radius: 50% 50% 0 0;
  box-shadow: 2px 1px 8px 5px #56f5fd, -12px -20px 20px 12px #56f5fd;
  position: relative;
}
.starSpeed {
  position: absolute;
  top: -55px;
  font-family: 'calculator';
  color: #4ddce4;
  font-size: 80px;
  left: 1px;
  text-shadow: 2px 2px 2px #3c8084, 3px 3px 0px #03dff1;
}
.speedUnit {
  position: absolute;
  top: -4px;
  font-family: cursive;
  color: #4ddce4;
  font-size: 24px;
  right: 46px;
  text-shadow: 2px 2px 2px #3c8084, 3px 3px 0px #03dff1;
}
.speedDesc {
  color: #6b6565;
  position: absolute;
  bottom: 0;
  left: 25px;
}


.aim:hover .blackSeparators {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: spin;
  -moz-animation-duration: 1000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: spin;
  -ms-animation-duration: 1000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.aim:hover .brackets {
  height: 25px;
  width: 25px;
  top: 36px;
  left: 36px;

  -webkit-animation-name: spinBack;
  -webkit-animation-duration: 2000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: spinBack;
  -moz-animation-duration: 2000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: spinBack;
  -ms-animation-duration: 2000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  animation-name: spinBack;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* active */

.aim:active {
  box-shadow: 0px 0px 8px 1px #56f5fd, inset 0px 0px 8px 3px #56f5fd;
}
.aim:active .brackets {
  box-shadow: 0px 0px 8px 3px #fd7556, inset 0px 0px 8px 1px #fd7556;
}

/* tron animation */
.wave {
    /* color: #00fff3; */
    color: #627271;
    -webkit-animation: 5s color infinite;
            animation: 5s color infinite;
  }
  @-ms-keyframes spin { 
    50% {
      color: #00ff22;
    }
  }
  @-moz-keyframes spin { 
    50% {
      color: #00ff22;
    }
  }
  @-webkit-keyframes color {
    50% {
      color: #00ff22;
    }
  }
  @keyframes color {
    50% {
      color: #00ff22;
    }
  }
.dengleo span {
    font-size: 42px;
    font-family: "tron";
    /* opacity: 0; */
    transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
}
/* <--- tron animation */

/* glitch animation --> */
.holoWrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.glitch-window {
  position: absolute;
  top: 0;
  left: -2px;
  width: 256px;
  color: #000;
  text-shadow: 2px 0 #F9F8F8, -1px 0 #fd7556, -2px 0 #000;
  overflow: hidden;
  animation: crt-me 4000ms infinite linear alternate-reverse;
}

@-webkit-keyframes crt-me {
  0% {
    clip: rect(15px, 9999px, 94px, 0);
  }
  10% {
    clip: rect(50px, 9999px, 76px, 0);
  }
  20% {
    clip: rect(44px, 9999px, 77px, 0);
  }
  30% {
    clip: rect(20px, 9999px, 97px, 0);
  }
  40% {
    clip: rect(45px, 9999px, 98px, 0);
  }
  50% {
    clip: rect(37px, 9999px, 85px, 0);
  }
  60% {
    clip: rect(55px, 9999px, 114px, 0);
  }
  70% {
    clip: rect(14px, 9999px, 115px, 0);
  }
  80% {
    clip: rect(50px, 9999px, 129px, 0);
  }
  90% {
    clip: rect(26px, 9999px, 96px, 0);
  }
  100% {
    clip: rect(42px, 9999px, 64px, 0);
  }
}

@keyframes crt-me {
  0% {
    clip: rect(20px, 9999px, 42px, 0);
  }
  10% {
    clip: rect(16px, 9999px, 19px, 0);
  }
  20% {
    clip: rect(28px, 9999px, 39px, 0);
  }
  30% {
    clip: rect(29px, 9999px, 30px, 0);
  }
  40% {
    clip: rect(16px, 9999px, 16px, 0);
  }
  50% {
    clip: rect(14px, 9999px, 16px, 0);
  }
  60% {
    clip: rect(28px, 9999px, 39px, 0);
  }
  70% {
    clip: rect(17px, 9999px, 19px, 0);
  }
  80% {
    clip: rect(22px, 9999px, 36px, 0);
  }
  90% {
    clip: rect(20px, 9999px, 24px, 0);
  }
  100% {
    clip: rect(15px, 9999px, 17px, 0);
  }
}
/* <-- glitch animation  */

#starfield, .aim, .hologram, .speedometr {
  z-index: 2000;
  position: fixed;
}

/* header */
header {
  margin-top: -20px;
}
.back {
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
nav.navbar {
  height: 100px;
  margin: 0;
  background-image: none;
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
}
.particles {
  width: 100%;
}
video {
  width: 100%;
  opacity: 0.2;
}

.navhead {
  transition: .5s;
  transition-delay: .5s;
}
.navhead.scrolled {
  height: 70px;
}
.navhead.scrolled .dengleo span {
  font-size: 28px;
}
.navhead .container-fluid {
  height: 100%;
  position: relative;
  z-index: 2003;
}
.navhead .container-fluid .navbar-header {
  height: 100%;
  width: 100%;
}
.dengleo {
  padding-top: 21px;
  height: 100%;
  display: inline-block;
}
.navbar .navbar-nav {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  justify-content: space-around;
  display: flex !important;
}
.navbar-nav > li {
  min-width: 100px;
  padding: 0 15px;
}
.navbar-nav > li a {
  text-align: center;
  font-size: 18px;
  color: #aaff65;
  padding: 15px 0;
  transition: .5s;
  -o-transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
}
.navbar-collapse.active {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: visible;
  background-color: #000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: inherit;
  margin: 0;
  flex-direction: column;
  justify-content: end;
  padding-top: 50px;
  transition: .5s;
  -o-transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
}
.navCross {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.navCross span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 15px;
}
.navCross span:first-child {
  transform: rotate(45deg);
}
.navCross span:last-child {
  transform: rotate(-45deg);
}

/* after header  */

.futureText {
  position: absolute;
  top: 150px;
  right: 200px;
}
.scrambleText {
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 4px;
}
.scrambleText span {
  color: #11e630;
  font-family: 'digits';
}
.hide {
  display: none;
}
.notice {
  margin-top: 20px;
}
.notice span {
  display: inherit;
  font-size: 26px;
}
.formBackgroundFluid .container {
  padding-top: 120px;
}
/* footer */
footer {
  padding-top: 20px;
  background-color: #000;
}







/* not found page  */
main.terminalScreen {
  box-sizing: border-box;
  height: 100%;
  background-color: #000000;
  background-image: radial-gradient(#11581E, #041607), url("../img/giphy.gif");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Inconsolata', Helvetica, sans-serif;
  font-size: 1.5rem;
  color: rgba(128, 255, 128, 0.8);
  text-shadow: 0 0 1ex #33ff33, 0 0 2px rgba(255, 255, 255, 0.8);
  position: relative;

  min-height: 500px;
}

.noise {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../img/giphy.gif");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: .02;
}

.overlay {
  pointer-events: none;
  position: absolute;
  height: 100%;
  width: 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%, rgba(32, 128, 32, 0.2) 2%, rgba(32, 128, 32, 0.8) 3%, rgba(32, 128, 32, 0.2) 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 -100vh;
  }
  35%, 100% {
    background-position: 0 100vh;
  }
}

@keyframes scan {
  0% {
    background-position: 0 -100vh;
  }
  35%, 100% {
    background-position: 0 100vh;
  }
}
.terminalAnimation {
  box-sizing: inherit;
  position: absolute;
  /* height: 100%; */
  width: 1000px;
  max-width: 100%;
  padding: 50px 20px;
  text-transform: uppercase;
  margin-top: 100px;
}

.output {
  color: rgba(128, 255, 128, 0.8);
  text-shadow: 0 0 1px rgba(51, 255, 51, 0.4), 0 0 2px rgba(255, 255, 255, 0.8);
}

.output::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: "$ ";
}
*/
.terminalScreen a {
  color: #fff;
  text-decoration: none;
}

.terminalScreen a::before {
  content: "[";
}

.terminalScreen a::after {
  content: "]";
}

.errorcode {
  color: white;
  font-family: 'Inconsolata';
  font-size: 70px;
}


/* contact page */
.contact-form {
  background-color: #000000;
}
.formBackgroundFluid .container {
  padding-bottom: 20px;
  padding-top: 20px;
  margin-top: 120px;
}
.formBackgroundFluid h1 {
  color: #fff;
  text-align: center;
  font-size: 24px;
  padding-bottom: 20px;
}
.formBlock {
  max-width: 800px;
  margin: 0 auto;
}
.formBlock form {
  display: flex;
  flex-direction: column;
}

input {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: #fff;
  height: 40px;
  outline: none;
  padding: 0 10px;
  margin-bottom: 10px;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
}
input[type=text]:hover, textarea:hover {
  border-color: rgba(255, 255, 255, 0.7);
}
input:focus, textarea:focus {
  border-color: #fff;
}
input[type=submit] {
  letter-spacing: 16px;
  text-transform: uppercase;
}
input[type=submit]:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}
textarea {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: #fff;
  height: 80px;
  outline: none;
  padding: 10px;
  margin-bottom: 10px;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
}

/* thanks-page  */

.thanks-page {
  background-image: url('../img/steve-halama-t5zp-0ZXFPg-unsplash.jpg');
  background-position: center;
  background-size: cover;
}
.centered-block {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
h2 {
  color: #fff;
  font-size: 40px;
}
.thanks-page p {
  color: #fff;
  font-size: 20px;
}
.thanks-page .centered-block {
  min-width: 320px;
}
.dark-text-back {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3);
}