/* Storing animations that are or could be useful */

.animation-reveal {
  opacity: 0;
  animation: reveal 2.5s ease-in-out forwards;
}

@keyframes reveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
