.fadeOut {
  animation-name: fadeOutAnim;
}

@keyframes fadeOutAnim {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
