/* [ConnectEmo] - Jeu de cartes en ligne
 * Mina Pêcheux (2020)
 * ------------------------------------------------
 * print.css - Styles for the final download to PDF
 */

 @media print {
  @page {
    size: 210mm 297mm;
    margin: 1.5cm 1cm;
  }

  html, body {
    width: 100%;
  }

  body {
    font-size: 12pt;
    line-height: 1.3;
  }

  p {
    page-break-inside: avoid;
  }

  .breaker {
    page-break-after: always;
  }

  .header {
    height: 0;
    display: none;
  }

  .export-logo {
    margin-top: -1cm;
    margin-bottom: 0.8cm;
    height: 2cm;
    width: auto;
  }

  .export-img {
    width: 75%;
    display: block;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1cm;
  }

  .export-text {
    bottom: 0;
    font-size: 24px;
    color: #f2f2f2;
    z-index: 100;
  }

  h1, h2, h3, h4, h5, h6 {
    break-after: avoid-page;
  }

  .img-break {
    margin-top: 1cm;
    margin-bottom: 3cm;
    page-break-after: always;
  }
  .img-break:last-child {
    page-break-after: auto;
  } 
}
