* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto Mono", monospace;
  background-color: #303030;
  color: #fff;
  height: 100vh;
  width: 100vw;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  opacity: 1;
  z-index: -1;
  background-image: radial-gradient(circle at center 0, #303030, #2b2b2b);
  background-blend-mode: screen;
}

a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
  transition: all ease-in-out 0.2s;
  opacity: 0.6;
}

a:hover {
  transform: translate3d(0, -2px, 0);
  opacity: 1;
}

.container {
  padding-top: 10vh;
  margin-left: 190px;
  font-weight: 100;
}

h1 {
  font-family: "Roboto Mono";
  font-size: 20px;
  text-align: left;
  color: #a9a9a9;
  font-weight: 300;
  opacity: 0;
  animation: infoEnter 0.5s forwards ease-in-out;
}

h2 {
  margin-top: 28vh;
  margin-left: 100px;
  font-weight: 300;
  font-size: 25px;
  display: inline-block;
  height: 33px;
  opacity: 0;
  animation: infoEnter 0.5s forwards ease-in-out 0.15s;
}

.blinking-cursor {
  font-weight: 300;
  font-size: 25px;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: #fff;
  }
}

@-moz-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: #fff;
  }
}

@-webkit-keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: #fff;
  }
}

@-ms-keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: #fff;
  }
}

@-o-keyframes "blink" {
  from,
  to {
    color: transparent;
  }
  50% {
    color: #fff;
  }
}

.label {
  font-size: 16px;
  width: 100px;
  color: #a9a9a9;
  font-weight: 300;
  margin-right: 0px;
}

.label::after {
  content: ".";
}

.info {
  font-size: 18px;
  margin-top: 7vh;
  padding: 0;
}

.info div {
  display: inline-block;
  vertical-align: top;
}

.info .info-label,
.info .info-text,
.links .links-label {
  opacity: 0;
  animation: infoLabelEnter 0.5s forwards ease-in-out 0.4s;
}

.info .info-text {
  animation-delay: 0.6s;
}
.links .links-label {
  animation-delay: 0.8s;
}

.links {
  margin-top: 28vh;
  display: inline-block;
  vertical-align: top;
}

.links div {
  display: inline-block;
}

.links ul {
  padding: 0;
  display: inline;
}

.links li {
  display: inline-block;
  list-style: none;
  margin-right: 84px;
  opacity: 0;
  animation: infoLabelEnter 0.5s forwards ease-in-out 1s;
}

.quote {
  quotes: "“" "”" "‘" "’";
  /* font-style: italic; */
  font-weight: 400;
  margin-top: 20px;
}

.quote:before {
  content: open-quote;
}

.quote:after {
  content: close-quote;
}

.links li:nth-child(2) {
  animation-delay: 1.1s;
}
.links li:nth-child(3) {
  animation-delay: 1.2s;
}
.links li:nth-child(4) {
  animation-delay: 1.3s;
}
.links li:nth-child(5) {
  animation-delay: 1.4s;
}

.links .label:not:first-child {
  margin-right: 10px;
}

.noise {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  background: url(images/background-noise.png) repeat;
  animation: grain 0.2s infinite;
  pointer-events: none;
  z-index: 90;
}

@keyframes infoEnter {
  0% {
    opacity: 0;
    transform: translate3d(0, 3px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes infoLabelEnter {
  0% {
    opacity: 0;
    transform: translate3d(-3px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes grain {
  0%,
  100% {
    background-position: 0 0;
  }
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 50% 25%;
  }
  75% {
    background-position: 25% 50%;
  }
}

@media screen and (max-width: 900px) {
  .container {
    margin-left: 5vw;
  }

  h2 {
    margin-left: 0;
    margin-top: 15vh;
  }

  .links {
    margin-top: 120px;
  }

  .links li {
    display: block;
    padding-top: 5px;
    font-size: 22px;
  }
}

.info-text li {
  list-style: none;
  margin-top: 5px;
  font-size: 18px;
}

.info-text li::before {
  content: "_";
  font-size: 22px;
}

.info-text .cta {
  margin-top: 20px;
}
