
body {
      background: #FFFFFF;
    }
h1{
    font-size: 25px;
    font-family: font;
}
.header-line{
    width: 90px;
    height: 2px;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--golddark);
}

    .team {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 3rem;
      margin-top: 60px;
    }

    .member {

      border-radius: 12px;
      padding: 1rem;
      width: 350px;
      transition: transform 0.2s;
    }

    .member:hover {
      transform: scale(1.05);
    }

    .member a {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .member img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 0.5rem;
    }

    .member-name {
      font-size: 1.2rem;
    }

    .team-wrapper{
    margin-top: 150px;
    max-width: var(--contentwidth);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    margin-bottom: 100px;
    text-align: center;
}