
.text-bold-200 {
    font-size: 1.5em;
}

em {
  text-emphasis: triangle;
  font-style: normal;
}

.emphasis-1 {
  text-emphasis: filled double-circle deeppink;
}

.emphasis-2 {
  text-emphasis: open triangle rebeccapurple;
  text-emphasis-position: under;
}

.emphasis-3 {
  text-emphasis: filled sesame blue;
}

.emphasis-4 {
  text-emphasis: '$' lime;
}

.emphasis-5 {
  text-emphasis: '💩';
}

p {
  color: hsl(0 0% 20%);
  font-size: 1.5rem;
  line-height: 1.8em;
  font-weight: 300;
  margin: 0;
}

.wrapper {
  height: 100vh;
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}

.typing-demo {
  width: 22ch;
  animation: typing 2s steps(22), blink .5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 2em;
}

@keyframes typing {
  from {
    width: 0
  }
}
    
@keyframes blink {
  50% {
    border-color: transparent
  }
}