* {
  padding: 0;
  margin: 0;
}

html {
  font-size: 10px;
}

body {
  background: #F4D085;
  padding: 0 3rem;
  text-align: center;
  font-size: 7rem;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.type-text {
  display: block;
  margin-top: 10rem;
}
.auto-type {
  position: relative;
}

.auto-type::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: black;
  animation: blink .4s infinite reverse;
}

@keyframes blink {
  from {
    opacity: 1;
  } to {
    opacity: 0;
  }
}
