* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media screen and (min-width:601px) {


    body {
        background-color: white;
        margin-top: 120px;
        
    }

    .titulo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contenedor {
        margin-left: 50px;
        width: 90%;
        height: 90%;
        display: grid;
        grid-template-columns: 400px 400px ;
        grid-template-rows: 1fr;
        gap: 30px;
    }

    /*  DIV PRODUCTO */
    .contenedor .div_prod {
        margin-left: 5em;     
        width: 80%;
        height: 80%;
        background-color: beige;
        border: solid 1px red;
        justify-content: center;
        text-align: center;
        
        font-size: calc(1.25 * 1vw);
  
    }
    .contenedor .div_prod2 {
        margin-left: 5em;     
        width: 180%;
        height: 180%;
        background-color: beige;
        border: solid 1px red;
        justify-content: center;
        text-align: center;
        
        font-size: calc(1.25 * 1vw);
  
    }


    .contenedor .div_prod2 .pr_imagen2 {
        height: 100%;
        width: 100%;
        padding: 30px;
       
    }
    .contenedor .div_prod .pr_imagen {
        height: 80%;
        width: 100%;
        padding: 10px  ;
        object-fit:contain ;
    }
    
}
/*               CELULAR          */
@media screen and (max-width:600px) {
    body {
        
        width: 100vw;
    }

    .titulo {
        margin-left:40px;
        margin-top: 40px;

    }
    .contenedor {
        display: block;        
        margin-left:40px;
        margin-top: 10px;
        width: 50%;
        height: 50%;
    }
    .contenedor .div_prod{
        width: auto;
        height: auto;
        background-color: beige;
        border: solid 1px red;
        justify-content: center;
        text-align: center;
        align-items: center;  
        margin-bottom: 50px;
        font-size: small;
    }
    .contenedor .div_prod img{
        width: 100%;
    }
}