:root {
    --first-color: rgb(39, 180, 245);
    --white: #fff;
    --gray-text: #F2F2F295;
}

body {
    font-family: "Montserrat", sans-serif;
}

.team-title{
    text-align: center;
    margin: 70px 0 0 0;
}

.team-title h1{
    color: var(--white);
    font-weight: 400;
    font-size: 35px;
    margin: 0 0 70px 0;
}

.team-pos{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.team-profile{
    background: var(--black);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin-bottom: 70px;
    height: 300px;
}

.team-profile h3{
    color: var(--white);
    font-weight: 400;
    font-size: 23px;
    margin: 20px 0 20px 0;
}

.team-profile p{
    color: var(--gray-text);
    margin: 0 0 60px 0;
}

.team-profile img{
    border-radius: 20px;
    margin-left: 3px;
}

.team-btn{
    color: var(--white);
    border: 1px solid var(--gray);
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
}