* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica.ttf') format('ttf');
}

@font-face {
    font-family: 'League Spartan';
    src: url('../fonts/LeagueSpartan.woff2') format('woff2');
}

html,
body {
    line-height: 1.5;
    color: rgb(27, 27, 27);
    font-family: 'Helvetica', arial, sans-serif;
    font-size: 16px;
    word-break: break-word;
    word-wrap: break-word;
}

#team {
    width: 100%;
    padding: 2.5rem 0;
    margin-top: 120px;
}

.team-container{
    max-width: 1280px;
    padding: 0 1.5rem 3rem;
    margin: auto;
}

.team-container .picture-area {
    font-size: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-container img {
    max-width: 100%;
}

.team-container .text{
    color: rgb(94, 94, 94);
    font-family: Helvetica, arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8rem;
}
.team-container .text p{
    margin-bottom: 1.5rem;
}

.team-container .text h1{
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: "League Spartan", arial, helvetica, sans-serif;
    font-size: 1.5rem;
    color: rgb(27, 27, 27);
}

@media screen and (max-width:768px) {
    #team{
        margin-top: 120px;
        padding: 1rem 0;
    }
    .team-container{
        max-width: 100%;
        padding: 0 1rem 1rem;
    }
    .team-container .text{
        font-size: 1rem;
        line-height: 1.2;
    }
    .team-container .text{
        margin-bottom: 1rem;
    }
}