/* CSS Document */

html {
    font-size: 16px;
}

main {
    padding:0;
}

main h1 {
    string-set: titre content(text); /* Titre du document dans l'entête */
}

main figure {
    resize: none;
}

.saut {
    break-before: page;
}

@page {
    size: A4 portrait;
    margin: 15mm;

    @top-left {
        vertical-align: bottom;
        margin-bottom: 2mm;
        padding-bottom: 1mm;
        content: 'Seconde : Physique/Chimie';
        border-bottom: solid 1px black;
        font-size: 14px;
        width:65mm;
    }

    @top-center {
        width: 1px;
        content: '';
        margin-bottom: 2mm;
        padding-bottom: 1mm;
        border-bottom: solid 1px black;
    }

    @top-right {
        vertical-align: bottom;
        margin-bottom: 2mm;
        padding-bottom: 1mm;
        content: string(titre); /* Titre du document dans l'entête */
        border-bottom: solid 1px black;
        font-size: 14px;
    }

    @bottom-center {
        vertical-align: top;
        margin-top: 1mm;
        padding-top: 1mm;
        border-top: solid 1px black;
        content: 'Page 'counter(page) ' / 'counter(pages);
        font-size: 14px;
    }
}