/* PRINT STYLING */
@media only print {

    @page { size: auto;  margin: 0mm 10mm; }

    .no-print, .no-print * { 
        display: none !important;
    }

    body { 
        -webkit-print-color-adjust: exact;
        font-size: 10pt;
    }
    
    #resume-header {
        background: white;
        display: flex;
        flex-flow: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        line-height: 1.2;
        margin: 0 0.75rem;
    }

    #contact {
        margin: 0 0.75rem;
    }

    .resume-name {
        font-size: 36pt;
    }

    .resume-subtitle {
        font-size: 12pt;
        margin-left: 0.2rem;
    }

    #headshot {
        height: 10vh;
        width: 10vh;
    }

    #contact {
        justify-content: space-between;
        font-size: 8pt;
    }

    main {
        display: flex;
        flex-flow: row;
    }

    section {
        margin-top: 1rem;
    }

    .sub-heading {
        font-size: 12pt;
        border-width: 5px;
        margin-top: 1.5rem;
    }

    .job-date { 
        font-size: 8pt;
    }

    .job-title { 
        font-size: 11pt;
    }

    .job-description {
        margin: 0.7rem 0;
    }

    .project-title { 
        font-size: 10pt;
    }

    .project ul {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    #education .job-title, #other .job-title { 
        font-size: 10pt;
    }

    #skills li {
        padding: 5px;
    }

    .resume-side {
        max-width: 35%;
        margin-left: 1rem;
    }
}