#team {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
  }
  
  .team-members {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
  }
  
  .team-member h3{
    font-size: 16px;
  }
  
  .team-member {
    width: 120px;
    text-align: center;
  }
  
  .team-member img {
    width: 150px;  /* Set a fixed width */
    height: 150px; /* Set a fixed height */
    object-fit: cover; /* Ensures images fill the space without distortion */
    border-radius: 50%; /* Makes images circular, optional */
}
