@page {
	size:   A4 portrait;
	margin: 2cm .5cm;

	@top-left {
		content: none;
	}
	@top-right {
		content: none;
	}
	@bottom-left {
		content: none;
	}
	@bottom-right {
		content: none;
	}

	@bottom-center {
		content:   "Pagina " counter(page) " van " counter(pages);
		font-size: 0.8em;
		color:     #555;
	}
}

/* 2. Print-only CSS */
@media print {

	body {
		margin:     0;
		padding:    0;
		display:    block;
		min-height: 100%; /* instead of 100vh */
	}

	* {
		-webkit-print-color-adjust: exact;
	}

	header, footer, nav, button {
		display: none
	}
}

