/* style pour impression de la page via CSS -bonus green code et accessibilité-  */

@media print {
  * {
    animation: none !important;
    transition: none !important;
  }

  .no-print,
  nav,
  footer {
    display: none !important;
  }

  a::after {
    content: ' (' attr(href) ')';
    font-size: 90%;
  }
}
