/* https://www.smashingmagazine.com/2015/01/designing-for-print-with-css/ */
/*https://www.w3.org/TR/css-gcpm-3/#content-function-header*/

/*
@media print {
  @page  {
    @bottom-center {
      content: "Copyright &copy; PencilCoder.net";
    }
  }
}
*/

/*avoid page breaks immediately after headings*/
h1, h2, h3, h4, h5 {
  page-break-after: avoid;
}

div.centeredImages {
  page-break-before:avoid;
}


/*
header, footer {
  display: block;  
}
*/