h1 {
    font-family: 'Sugo Pro Classic Trial';
    font-size: 45px;
    text-transform: uppercase;
}

.team-container {
    margin: auto;
    padding: 30px 0px;
    max-width: 80%;
}

.members-container,
.board-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    grid-gap: 20px;
    grid-row-gap: 25px;
    margin: 25px;
}


@media (max-width: 1500px) {
    .team-container {
        max-width: 100%;
    }


}

@media (max-width: 1200px) {

    .members-container,
    .board-container {

        grid-template-columns: 1fr 1fr;
    }

    .team-container {
        max-width: 100%;
    }


}

@media (max-width: 930px) {

    .members-container,
    .board-container {

        grid-template-columns: auto;
    }
}

.profile-container {
    width: 350px;
    height: 500px;
    background-color: #16182d;
    border-radius: 25px;
}

.profile-image {
    margin: 25px auto;
    width: 300px;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.profile-image img {
    width: 100%;
    margin: auto;
}

.profile-name {
    font-family: 'Sugo Pro Classic Trial';
    font-size: 25px;
    text-transform: uppercase;
    margin-top: 33.75px;
}

.profile-specialty {
    font-family: 'Sugo Pro Classic Trial';
    font-size: 22px;
    opacity: 0.5;
}

.profile-description {
    font-family: 'Sugo Pro Classic Trial';
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 33.75px;
    letter-spacing: 1px;
    color: #11F09D;
}