.home {
  position: fixed;
  top: 40px;
  left: 200px;

  width: calc(100% - 200px);
  height: calc(100% - 40px);

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: "SN Pro", sans-serif;
  font-size: 80px;
}

.home .typing {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #cccccc;

  display: inline-block;

  width: 0;
  max-width: max-content;

  animation:
    typingLoop 10s steps(20, end) infinite,
    blink 1s steps(1) infinite;
}

@keyframes typingLoop {
  0% {
    width: 0ch;
  }
  30% {
    width: 13ch;
  }
  60% {
    width: 13ch;
  }
  70% {
    width: 0ch;
  }
  100% {
    width: 0ch;
  }
}

@keyframes blink {
  0%,
  49% {
    border-color: #cccccc;
  }
  50%,
  100% {
    border-color: transparent;
  }
}
