body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 98vh;
  background-color: #575353;
  color: #b05c16;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
}

#typewriter::after {
  content: "|";
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
