@keyframes aparecer {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: aparecer 2s ease-in-out;
}