.print-cover-page {
  display: none;
}

@media print {
  @page:first {
    margin: 0;
  }

  .print-cover-page {
    break-after: page;
    min-height: 100%;
    height: 100%;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  .print-cover-page img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    display: block;
  }
}
