  body {
    font-family: Times New Romans, Times, serif;
    margin: 0;
    font-size: 100%;
    line-height: 1.6;
	padding: 20px;
  }
  h1 {
    color: green;
	font-family: Century Gothic, verdana, sans-serif;
    font-weight: 900;
    text-align: center;
    font-size: clamp(3.5rem, 6vw, 7rem);
  }
  .team-photo {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  /* Adjust the image size as needed */
  .team-photo img {
    max-width: 60%;
    height: auto;
    border: 2px solid #ccc;
	border-radius: 10px
  }
  
  @media (max-width: 600px) {
    .team-photo img {
    max-width: 90%;
    height: auto;
    border: 2px solid #ccc;
	border-radius: 10px
    }
}
  .caption {
    margin-top: 20px;
    font-size: clamp(1.1rem, 1.5vw, 2rem);
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }