  body {
    font-family: Merriweather, Times, serif;
    margin: 0;
    font-size: 100%;
    line-height: 1.6;
	padding: 20px;
  }
  h1 {
    color: black;
    font-family: Century Gothic, verdana, sans-serif;
    font-weight: bold;
    text-align: left; /* center the heading */
    font-size: clamp(3rem, 6vw, 7rem);
    display: block;
    width: 100%;
    background-image: url("../images/Green lightbulb 1.png");
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    padding: 20px;
  }

  .content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: left; /* center all content inside */
  }

  .team-container {
    display: flex;
    flex-wrap: wrap;
	flex-direction: column;
    gap: 20px;
    justify-content: center; /* center all members in row */
  }

  .member {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    text-align: left;
    max-width: 800px;
    margin: 10px 0;
  }

  .member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
  }

  .name {
    font-weight: bold;
	font-size: clamp(1.5rem, 1.9vw, 2.5rem);
    margin: 5px 0;
  }

  .title {
    font-style: italic;
    font-size: clamp(1.1rem, 1.5vw, 2rem);
    margin: 5px 0;
  }

  @media (max-width: 600px) {
    .member {
      flex-direction: column; /* stack image, name, title vertically */
      text-align: center; /* center text under image */
    }
    .team-container {
      align-items: center; /* center all members */
    }
  }