#people{
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
}

#people > div{
    margin: 0 auto;
}

#people img{
    display: block;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 5px;
}

#people p{
    font-size: 23px;
    line-height: 35px;
    color: #4B4B4B;
}

@media only screen and (max-width: 599px) {
    #people{
        height: auto;
    }

    #people > div{
        width: 90%;
        margin: 0 auto;
        margin-top: 60px;
    }

    #people img[alt="Logo"]{
        width: 193px;
        height: auto;
    }

    #people img[alt="people"]{
        width: 370px;
        max-width: 100%;
        height: auto;
    }

    #people p {
        font-size: 18px;
        line-height: 27px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px){
    #people{
        height: auto;
    }

    #people > div{
        width: 90%;
        margin: 0 auto;
        margin-top: 60px;
    }

    #people img[alt="Logo"]{
        width: 210px;
        height: auto;
    }

    #people img[alt="people"]{
        width: 450px;
        height: auto;
    }

    #people p {
        font-size: 18px;
        line-height: 27px;
    }
}