body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.fade-out {
  opacity: 0;
}

body.fade-in {
  opacity: 1;
}