body {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* état visible */
body.loaded {
  opacity: 1;
}
