body {
    font-family: sans-serif;
    margin: 0;
  }
  
  header {
    position: relative;
    overflow: hidden;
  }
  
  header img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .header-text {
    position: absolute; /* Positioned absolutely on larger screens */
    bottom: 20px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  h1,
  h2,
  h3,
  h4 {
    /* Combine heading styles */
    color: white;
  }
  
  h1 {
    font-size: 3em;
  }
  
  h2 {
    font-size: 3em;
    color: black;
  }
  
  a {
    text-decoration: none;
  }
  
  p {
    font-size: large;
  }
  
  .contact-info a {
    display: inline-block;
    margin: 0 20px;
  }
  
  .ph {
    font-size: 84px;
    color: rgb(184, 99, 84);
  }
  
  .name-box {
    background-color: rgb(184, 99, 84);
    color: white;
    padding: 10px 20px;
    margin-bottom: 10px;
    font-size: 50px;
    text-align: center;
  }
  
  .voiceover-box {
    background-color: white;
    color: rgb(184, 99, 84);
    padding: 10px 20px;
    margin-bottom: 10px;
    font-size: 30px;
    text-align: center;
  }
  
  .demos {
    text-align: center;
    background-color: #0a0d0c;
    color: rgb(184, 99, 84);
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .demos-content {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .demos-image img {
    /* Combined image styles */
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .contact-info {
    text-align: center;
    margin-top: 20px;
  }
  
  .about-and-image {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-image {
    max-width: 80%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  
  
  .about {
    text-align: center;
    padding: 30px;
  }
  
  .about p {
    font-size: 1.2em;
    line-height: 1.6;
    padding: 30px;
  }
  
  
  @media (min-width: 768px) {
    .demos {
      flex-direction: row;
    }
  
    .demos-content {
      flex: 1;
      margin-right: 20px;
      margin-bottom: 0;
    }
  
    .demos-image {
      flex-shrink: 0;
      max-width: 50%;
    }
  
    .about-and-image {
      flex-direction: row;
    }
  
    .about-image {
      flex-shrink: 0;
      max-width: 50%;
      margin-left: 0;
      margin-right: 20px;
      margin-bottom: 0;
    }
  }
  
  @media (max-width: 767px) {
    .name-box {
      font-size: 25px;
      width: 100%;
      box-sizing: border-box;
    }
  
    .voiceover-box {
      font-size: 15px;
      width: 100%;
      box-sizing: border-box;
    }
  
    .about-image {
      display: none;
    }
  
    .header-text {
      position: static; /* Positioned statically on mobile */
      width: 100%;
      text-align: center;
    }
  }
  
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    bottom: 0;
  }