body {
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0;
  margin: 0;
}

#text {
  display: inline-block;
}

h1 {
  font-size: 8vw;
  font-family: "Helvetica", sans-serif;
  text-transform: uppercase;
  /*letter-spacing: 0.05em;*/
  font-weight: 600;
  user-select: none;
  cursor: default;
  text-rendering: optimizeLegibility;

}

h1:nth-child(2) {
  position: fixed;
  top: 0;
  z-index: -1;
  visibility: hidden;
}

span {
  color: #DDD;
  position: relative;
  transition: transform 800ms ease-in-out,
  filter 800ms ease-in-out, 
  color 800ms ease-in-out;
  transform: translateX(0px);
  z-index: 2;
  transform-style: preserve-3d;
  display: inline-block;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
}

.is-background {
  color: #BBB;
  filter: blur(0.5px);
}

.is-foreground {
  color: #FFF;
  filter: blur(0.5px);

}