.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content h1 {
    margin-bottom: 10px;
    font-size: 32px;
}

.members-team {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.member-team-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 100px;
    align-items: center;
    box-sizing: border-box;
}

.member-team-wrapper picture {
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(21, 54, 38, 0.75);
    border-radius: 50px;
    overflow: hidden;
    box-sizing: border-box;

    @media (max-width: 550px) {
        height: 70px;
        width: 70px;
        border-radius: 35px;

    }
}

.member-team-wrapper picture img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.description-member-team-block {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.description-member-team-block .member-name {
    font-size: 20px;
}

.description-member-team-block .description-member-team {
    font-size: 14px;
}