
@media print {
    @page {
      size: 8.5in 11in;
      margin-top: 0in;
      margin-bottom: 0in;
      margin-left: 0.25in;
    }
  
    body {
      background-color: transparent;
      background-image: none;
      color: #000000;
      font-size: 12px;
      /* margin-top: 1vh; */
    }
  
    #heropic {
      display: none;
    }
  
    .profilename {
      grid-column: 1 / 3;
      font-size: 1rem;
    }
    .jobtitle {
      grid-column: 1 / 3;
      font-size: .75rem;
    }

    .triangle {
        display: none;
    }
    .grid-container {
      display: grid;
      width: 100%;
      grid-template-columns: 1fr 2fr;
      grid-template-rows: 35px 30px auto;
      height: fit-content;
      grid-template-areas:
        "profilename profilename"
        "jobtitle jobtitle"
        "summary summary"
        "contact experience"
        "education experience"
        "licenses experience";
      gap: 2px;
    }
  
    footer {
      display: none;
    }
}