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

html,
body {
  margin: 0;
  font-family: 'Neue', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  z-index: -2;
  background-color: black;
  color: red;
  scrollbar-width: none;
}

html ::-webkit-scrollbar,
body ::-webkit-scrollbar {
  display: none;
}

html ::-moz-selection,
body ::-moz-selection {
  color: black;
  background: black;
  text-shadow: 0px 0px 10px #FF0000,0px 0px 10px #FF0000,0px 0px 10px #FF0000;
}

html ::selection,
body ::selection {
  color: black;
  background: black;
  text-shadow: 0px 0px 10px #FF0000,0px 0px 10px #FF0000,0px 0px 10px #FF0000;
}

#line {
  height: 100vh;
  width: 2px;
  -webkit-animation: chrome 5s linear infinite;
          animation: chrome 5s linear infinite;
  background: -webkit-gradient(linear, left bottom, left top, from(red), color-stop(50%, rgba(0, 0, 0, 0)), to(red));
  background: linear-gradient(0deg, red 0%, rgba(0, 0, 0, 0) 50%, red 100%);
  background-size: 200% 200%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

@-webkit-keyframes chrome {
  from {
    background-position: 0% 200%;
  }
  to {
    background-position: 200% 0%;
  }
}

@keyframes chrome {
  from {
    background-position: 0% 200%;
  }
  to {
    background-position: 200% 0%;
  }
}

.logo {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo img {
  height: 10vh;
  width: auto;
  margin: 0;
  margin-bottom: 15px;
}

.logo p {
  font-size: 20px;
  font-weight: 100;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.logo #arrows {
  height: 5vh;
  width: auto;
}

.logo #arrows:hover {
  -webkit-filter: drop-shadow(0px 0px 10px red);
          filter: drop-shadow(0px 0px 10px red);
}

.logo a {
  position: absolute;
  bottom: 15;
}

.content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.content img {
  margin: 0;
  margin-bottom: 20px;
}

.content p {
  font-size: 40px;
  width: 55%;
  margin: 0;
  text-align: center;
}

.content .about {
  text-align: left;
  margin-bottom: 20px;
}

.content a {
  text-decoration: none;
  width: auto;
}

.content a p {
  font-size: 20px;
  color: red;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.content a .download {
  font-size: 40px;
}

.content a:hover p {
  text-decoration: underline;
}

.content .print {
  border: solid red 2px;
  width: 40vw;
  height: auto;
  border-radius: 5px;
}

.content .hand {
  width: auto;
  height: 70vh;
}

.content .handbreak {
  height: 100px;
}

#they {
  width: 30vw;
  height: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 15;
  border-radius: initial;
  border: initial;
  -webkit-filter: drop-shadow(0px 0px 2px black);
          filter: drop-shadow(0px 0px 2px black);
}
/*# sourceMappingURL=styles.css.map */