@media print {
    nav { display: none; }
    body {
	margin-left: 30pt;
	margin-right: 30pt;
	margin-top: 30pt;
	margin-bottom: 30pt;
    }
    section.title-page { page: titlepage; counter-reset: page; }
    section.title-page h2 { font-size: 7vw; }
    section.front-matter { page: frontmatter; }
    section.body-matter { page: bodymatter; }
    section.back-matter { page: backmatter; }
    div.abstract { break-before: page; }
    div.preface { break-before: page; }
    div.table-of-contents { break-before: page; }
    div.reset-page { /* page: blindfolio; */ counter-reset: page; }
    div.chapter { break-before: page; }
    h2, h3, h4, h5, h6 {
        page-break-after: avoid;
      }
    @page bodymatter {
	@bottom-right {
	    content: counter(page,decimal);
	}
    }
    @page frontmatter {
	@bottom-right {
	    content: counter(page,lower-roman);
	}
    }
    @page backmatter {
	@bottom-right {
	    content: counter(page,decimal);
	}
    }
    @page {
	footer { display: none; }
    }
    @page:last {
	footer { display: block; }
    }
    a { text-decoration: none; color: currentColor; cursor: none; }
    p { text-align: justify; text-justify: inter-word; hyphens: manual; }
}
