body{
    background-image: url(../imagensSite/fundoMuseu.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
main{
    display: flex;
    align-items: center;
}
section{
    width: 80%;
    padding: 30px 0;
}
li{
    display: flex;
    align-items: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.727);
    border: 1px solid white;
    margin-top: 12px;
    border-radius: 5px;
}
.foto{
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.detalhes{
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.divInfo{
    padding: 0 10px;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    font-weight: lighter;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 25px;
}
.nome{
    width: 500px;
}
.cargo{
    width: 200px;
    margin-right: 15px;
}
@media(max-width: 1100px){
    section{
        width: 98%;
    }
    }
    .nome{
        width: 400px;
    }
    .cargo{
        width: 180px;
    }
@media(max-width: 750px){
    .nome{
        width: 360px;
    }
    .cargo{
        width: 170px;
    }
}
@media(max-width: 690px){
    .foto{
        width: 70px!important;
    }
    .nome{
        width: 330px;;
    }
    .cargo{
        width: 160px;
    }
}
@media(max-width: 620px){
    .divInfo{
        font-size: 21px!important;
    }
    .nome{
        width: 250px;
    }
}
@media(max-width: 540px){
    .divInfo{
        font-size: 20px!important;
    }
    .nome{
        width: 200px;
     
    }
    .cargo{
        width: 140px;
     
    }
}
@media(max-width: 450px){
    .nome{
        width: 150px;
     
    }
    .cargo{
        width: 80px;
    }
}
@media(max-width: 350px){
    .divInfo{
        font-size: 17px!important;
        line-height: 20px;
    }
    .nome{
        width: 125px;
    }
    .cargo{
        width: 60px;
    }
}