/* TEXT FLASH IN */
[anim-on-scroll-full="text-flash-in"] {
  opacity: 0;
  text-shadow: 0px 0px 0px white;
}

.text-flash-in {
  animation: text-flash-in 2s ease-in-out 0s forwards;
}

@keyframes text-flash-in {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 0px white;
  }

  40% {
    opacity: 1;
  }

  50% {
    opacity: 1;
    text-shadow: 0px 0px 30px white;
  }

  100% {
    opacity: 1;
    text-shadow: 0px 0px 0px white;
  }
}

/* SLIDE UP IN */
[anim-on-scroll-half="slide-up-in"] {
  opacity: 0;
  transform: translateY(-20px);
}

.slide-up-in {
  animation: slide-up-in 1s ease-out 0s forwards;
}

@keyframes slide-up-in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}