@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 100%;
    font-family: "Roboto", sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    gap: 40px;
}

article.article__detail-team{
    display: flex;
    flex-direction: column;
    width: 40%;
    gap: 16px;
    padding: 20px;
    background-color: rgba(173, 173, 173, .7);
    border-radius: 8px;
}

article.article__detail-team p{
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

article.article__detail-team span{
    font-weight: 800;
    border-radius: 8px;
    background-color: rgb(125, 255, 105);
    padding: 4px 8px;
}

@media screen and (max-width: 1030px){
    article.article__detail-team{
        width: 50%;
    }
}

@media screen and (max-width: 830px){
    article.article__detail-team{
        width: 70%;
    }
}

@media screen and (max-width: 630px){
    article.article__detail-team{
        width: 90%;
    }
}