.fadeIn {
  animation-name: fadeInAnim;
}

@keyframes fadeInAnim {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
