h1 {
  -webkit-background-clip: text;
  background-clip: text;
  animation: reveal 1600ms ease-in-out forwards 200ms;
}
@keyframes reveal {
  80% {
    letter-spacing: 8px;
  }
  100% {
    background-size: 300% 300%;
  }
}