body.light .typewriter h1 {
color: black;
}
  
body.dark .typewriter h1 {
color: white;
}

.typewriter span {
border-right: .05em solid;
animation: caret 1s steps(1) infinite;
}
  
@keyframes caret {
50% {
    border-color: transparent;
}
}
  