
  header {
    min-height: 90vh;
  }
  h1 {
    font-size: clamp(3rem, 6vw, 8rem);
  }
  /* Hero */
  .hero-bg {
    background-image: url('../images/coffee-notebook.png');
    background-position: -600px 0;
    background-repeat: no-repeat;
    padding: 20px;
    z-index: -1;
  }
  /* Media / Imagery */
  .headshot {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
  }
  .disclaimer {
    display: block;
    margin-top: 40px;
    text-align: center;
  }
  .pen {
    width: 100%;
    margin-bottom: 20px;
  }
@media (max-width: 767px) {
    .hero-bg header {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-bottom: 20px;
    }
    h1 {
      max-width: 50%;
    }
  }
  @media (max-width: 500px) {
    .headshot-container {
      margin: 0 auto;
    }
  }
  @media (min-width: 768px) {  
    main {
        padding: 40px 40px 0 40px;
        margin-bottom: 0;
    }
    .hero-bg {
        padding: 40px;
        background-size: 100%;
        background-position: 0 0;
    }
  }
  @media (min-width: 768px) and (max-width: 1199px) {
    .hero-bg header {
      flex-direction: column;
      min-height: 65vh;
    }
  } 
  @media (min-width: 1200px) {
    .hero-bg {
        padding: 80px 80px 20px 80px;
    }
    .hero-bg header {
      min-height: 85vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .headshot, .pen {
      width: 480px;
    }
    .headshot {
        height: 480px;
    }
}