/*!
 * HTML-Sheets-of-Paper (https://github.com/delight-im/HTML-Sheets-of-Paper)
 * Copyright (c) delight.im (https://www.delight.im/)
 * Licensed under the MIT License (https://opensource.org/licenses/MIT)
 */

@import "sheets-of-paper.css";

.page {
	/* Styles for better appearance on screens only -- are reset to defaults in print styles later */

	/* Reflect the paper width in the screen rendering (must match size from @page rule) */

	width: 10cm;
	/* Reflect the paper height in the screen rendering (must match size from @page rule) */
	min-height: 7cm;

	/* Reflect the actual page margin/padding on paper in the screen rendering (must match margin from @page rule) */
	padding-left: 0.3cm;
	padding-top: 0.3cm;
	padding-right: 0.3cm;
	padding-bottom: 0.3cm;
}
/* Use CSS Paged Media to switch from continuous documents to sheet-like documents with separate pages */
@page {
	/* You can only change the size, margins, orphans, widows and page breaks here */

	/* Paper size and page orientation */
	size: 21cm 6.5cm portrait;

	/* Margin per single side of the page */
	padding-left: 0.3cm;
	padding-top: 0.3cm;
	padding-right: 0.3cm;
	padding-bottom: 0.3cm;
}

p {
    display: block;
	font-size:12px;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
	text-align: left;
}