I just checked the code and wanted to share my learnings. If you want to change styles in Bookstack that only apply for the PDF export then you can limit it to the following .export-format-pdf class in <body>:
body.export-format-pdf {
font-size: 8pt;
}
accordingly you can also style other things in the export, example:
body.export-format-pdf h1 {
text-decoration: underline;
}