@media print {

    * {
        line-height: 1 !important;
        color: black !important;
        background-color: white !important;
    }

    a::after {
        content: " (" attr(href) ")";
    }

    .php-form {
        display: none;
    }

@media print and (orientation: portrait) {

    main {
        flex-direction: column;
    }

    img {
        width: 100%;
    }

}

/* print styles applied to landscape pages */
@media print and (orientation: landscape) {

    main {
        flex-direction: row;
    }

    img {
        width: 50%;
    }

}