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

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

body {
  animation: pageFadeIn 0.35s ease both;
}

body.page-leave {
  animation: pageFadeOut 0.25s ease both;
  pointer-events: none;
}
