.print {
    display: none;
    visibility: hidden;
}
.no-print { }

/*
 * Printing
 */

@media print {
    :root {
        --white : #ffffff;
        --black : #000000;
    }
    html {
        font-size: 1rem;
    }
    h1, h2, h3, h4, h5, h6, p,
    body, div, section, menu, article {
        font-family:"Hyperlegible", sans-serif; 
    }
    form {
        display: none;
        visibility: hidden;
    }

    article {
        p, h1, h2, h3, h4, h5, h6 {
            font-family:"Hyperlegible", sans-serif; 
        }
        li {
            font-family:"Hyperlegible", sans-serif; 
        }
        h1 { font-size: 3rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }
        h4 { font-size: 1.3rem; }
        span { font-size: inherit; }
    }

    article, #text-file {
        max-width: 90vw;
    }

    a[href]::after {
        content: " <"attr(href)">";
        color: var(--blue);
    }

    .print {
        display: unset;
        visibility: visible;
    }
    .no-print {
        display: none;
        visibility: hidden;
    }
}

@page {
    margin: 2cm 0.5cm 1cm 0.5cm;
}
