* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width:600px) {
    body {

        margin: 30px;
    }                    

    .wrap {
        display: grid;
        grid-template-columns: auto;
        margin-top: 10px;
        margin-left: 40px;
        
        
    }
    
    .proveedores{
        width: 100%;
    }
    
    .promos{
        width: 100%;
    }
    .promos img{
        width: 60%;
    }

    .browse {
        width: 60%;
        
        
    }

    .browse img {
        width: 100%;        
        object-fit:fill;
        padding: 10px;
        transition: all 1.2s;
    }  
    

}

/* Pantalla PC*/
@media (min-width:601px) {

    body{
        min-width: 900px;
       
    }
    .wrap {
        background-color: beige;
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        grid-template-rows: 400px;
        gap:   10px;
        word-break: keep-all;
        
    }

    .proveedores {
        width: 100%;
        line-height: 25px;
        margin-left: 40px;
       
    }

    .browse {
        width: 100%;
        border: solid 1px;
        height: 400px;

    }

    .browse img {
        width: 100%;
        height: 400px;
        object-fit:fill;
        padding: 10px;
        transition: all 1.2s;
    }

    .browse p {
        display: flex;
        align-items: center;
        justify-content: center;
        color: black;
        width: 100%;
    }

    .promos {
        height: 350px;
        width: 100%;
        margin-left: 40px;

    }

    .promos img {
        width: 150px;
        height: 110px;

    }

    promos p {
        align-items: center;
        justify-content: center;
    }
    .browse img:hover {
        scale: 1.3;
        
    }
}