:root {
    --Background-Color: #6162C3;
    --Basic-Text-Color: #000;
    --Secondary-Text-Color: #6162C3;
    --Polygon-Text-Color: #8247E5;
    --Paragraph-Text-Color: #3A3A3A;
    --Background_Body: #fff;
}

#Team{
    padding-inline: 20px;
}

#Team h1 {
    text-align: center;
    color: var(--Secondary-Text-Color);
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    text-transform: uppercase;
    text-decoration: underline;
}

.Profile_Team {
    max-width: 260px;
}

.Profile_Team img {
    border-radius: 50%;
    width: 100%;
}

.Card_Team {
    max-width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.Card_Team .Content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.Team_Twitter span {
    color: var(--Basic-Text-Color);
    font-weight: 600;
    font-size: 1.7rem;
}

.Team_Info {
    display: flex;
    flex-direction: column;
}

.Cards_Team {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.Team_Info p {
    color: var(--Paragraph-Text-Color);
    font-weight: 500;
}

.Team_Info h3 {
    color: var(--Paragraph-Text-Color);
    font-weight: 500;
}

.Team_Twitter {
    text-align: center;
    position: relative;
}


.Team_Twitter i {
    color: var(--Paragraph-Text-Color);
    font-size: 1.2rem;
    top: 10px;
    right: 50px;
    position: absolute;
}

@media only screen and (max-width:1300px) {
    .Profile_Team{
        max-width: 220px;
    }

    .Card_Team{
        max-width: 300px;
    }

    .Team_Info p{
        font-size: 0.9rem;
    }
}