@font-face {
    font-family: 'mrrobotregular';
    src: url('../fonts/mr_robot-webfont.woff2') format('woff2'),
         url('../fonts/mr_robot-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body {
  font-family: 'mrrobotregular';
  background-color:black;
  margin: 0;
  padding: 0;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.typewriter {
  color: white;
}
/* add custom cursor */
.typewriter::after {
  content: "|";
  display: inline;
  animation: blink 1s infinite;
}

/* custom cursor animation */
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
