html {
  background: #ffb82f;
  overflow: hidden;
}
body {
  margin: 0;
}
h1 {
  align-items: center;
  display: flex;
  font-family: 'Carter One', sans-serif;
  font-size: 17vw;
  height: 100vh;
  justify-content: center;
  margin: 0;
  text-transform: uppercase;
  width: 100vw;
}

h1 span {
  animation: 2s ease-out 0s 1 place, 2s ease-in-out 0s 1 fade;
  color: #fff;
  margin: 0 5px;
  text-shadow: 0 0 10px rgba(0,0,0,0)
}

@keyframes fade {
  0% {
    opacity: 0;
    color: #000;
  }
  100% {
    opacity: 1;
    color: #fff;
  }
}

@keyframes place {
  0% {
    margin: 0 50px;
  }
  100% {
    margin: 0 5px;
  }
}
