*{
    margin: 0;
    padding: 0;
}
body{

    justify-content: center;   
    box-sizing: border-box;
    background-color: lightblue;
   }
.container{
    display: flex;
    align-items: center;
    justify-content: center;

}
.logoempresas{
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 5px 0 #000;
    justify-content: center;
    margin: 8px;
    background-color: white;
    border-radius: 10px;
}
.logoempresas img{
    width: 160px;
    /* filter: drop-shadow(0 0px 1px #000); */
}
@media(max-width:576px){
    .logoempresas{
        width: 80px;
        height: 80px;

    }
    .logoempresas img{
        width: 70px;
        /* filter: drop-shadow(0 0px 1px #000); */
    }
}