@media print {

    @page {
        margin: 2cm
    }

    nav, aside, footer {
        display: none;
    }

    body {
        color: #000;
        line-height: 1.3;
        background: #fff;
    }

    body, .content {
        width: 100%;
        max-width: 100% !important;
        margin: 0;
        padding: 0;
        background: #fff;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    img {
        page-break-inside: avoid;
        page-break-after: avoid;
        max-width: 100% !important;
    }

    blockquote, pre {
        page-break-inside: avoid;
    }

    ul, ol, dl {
        page-break-before: avoid;
    }

    a[href]:after {
        content: none;
    }

    .noprint {
        display: none;
    }
}