/* type.css */

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
  font-family: monospace;
  font-size: 2rem;
}

#typed-text {
  white-space: pre-wrap;  
  border-right: 2px solid black;
  padding-right: 5px;
  animation: blink 1s step-end infinite;
  justify-content: center;
  align-items: center;
  cursor: default;
}

a {
  text-decoration: none;
  cursor: default;
  color: inherit;
}
@keyframes blink {
  50% { border-color: transparent; }
}
