@font-face {
    font-family: 'latin_modern_mono_light10Rg';
    src: url('lmmonolt10-regular-webfont.eot');
    src: url('lmmonolt10-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('lmmonolt10-regular-webfont.woff2') format('woff2'),
         url('lmmonolt10-regular-webfont.woff') format('woff'),
         url('lmmonolt10-regular-webfont.ttf') format('truetype'),
         url('lmmonolt10-regular-webfont.svg#latin_modern_mono_light10Rg') format('svg');
    font-weight: normal;
    font-style: normal;

}

.css-typing p {
    border-right: 0.4vw solid black;
    font-family: 'latin_modern_mono_light10Rg';
    font-size: 4vw;
    white-space: nowrap;
    overflow: hidden;
}
.css-typing p:nth-child(1) {
    width: 29vw;
    -webkit-animation: type 1.2s steps(14, end);
    animation: type 1.2s steps(14, end);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.css-typing p:nth-child(2) {
    width: 86vw;
    opacity: 0;
    -webkit-animation: type2 3.2s steps(33, end);
    animation: type2 3.2s steps(33, end);
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.css-typing p:nth-child(3) {
    width: 38vw;
    opacity: 0;
    -webkit-animation: type3 1.8s steps(18, end), blink .5s step-end infinite alternate;*/
    animation: type3 1.8s steps(18, end), blink .5s step-end infinite alternate;*/
    -webkit-animation-delay: 4.4s;
    animation-delay: 4.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: 0.4vw solid black;
  }
  100% {
    border: none;
  }
}

@-webkit-keyframes type {
  0% {
    width: 0;
  }
  99.9% {
    border-right: 0.4vw solid black;
  }
  100% {
    border: none;
  }
}

@keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: 0.4vw solid black;
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@-webkit-keyframes type2 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  99.9% {
    border-right: 0.4vw solid black;
  }
  100% {
    opacity: 1;
    border: none;
  }
}

@keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes type3 {
  0% {
    width: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    border-color: tranparent;
  }
}
