body {
  background: #FDFCFA;
  animation: introduction 1s 0.25s ease-in-out forwards;
  opacity: 0;
}

@keyframes introduction {
  to {
    opacity: 1;
  }
}