@media print {
    body {
        background: none;
        color: #000;
        font-size: 12pt;
    }

    nav,
    header,
    footer {
        display: none;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}