/* prevent printing webpage */
@media print {

  html,
  body {
    display: none;
  }
}

/* prevent selecting text */
html {
   user-select: none !important;
}

/* Hide Scroll Viewport notice */
footer ul.footer__attribution-line--copyright li:nth-child(2) { 
  display: none;
}