body {
    background: slategray;
    font-family: "Caudex", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 1.4rem;
}

h2 {
    font-size: 1rem;
}

ul {
    margin: 0;
    list-style-type: none;
    margin-top: 1mm;
    padding: 0;
    padding-left: 2mm;
}

li {
    position: relative;
    padding-left: 20px;
}

li::before {
    content: "☐";
    position: absolute;
    left: 0;
}

section {
    padding: 1mm;
}

.subtitle {
    font-size: 10pt;
    font-style: italic;
}

.sheet-a5 {
    width: 148mm;
    height: 210mm;
    background: white;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    gap: 2mm;
    padding: 2mm;
}



.sheet-a4 {
    width: 210mm;
    height: 297mm;
    background: white;
}

.sheet>div {
    flex-grow: 1;
    width: 50%;
}

.sheet-title h1 {
    padding-bottom: 1mm;
}

.sheet-title {
    padding-bottom: 2mm;
}

.stress {
    text-decoration: underline;
    text-transform: uppercase;
}

.roll-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 2mm;
    border: 1px solid black;
}

.roll-table th,
.roll-table td {
    border: 1px solid black;
    padding: 2px;
}

.roll-table td:first-child {
    width: 10mm;
    text-align: left;
}

.tag-list {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

@media print {
    body>*:not(.sheet) {
        display: none;
    }
}

