* {
    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: 70px;
        width: 90%;
        height: 90%;
        display: grid;
        grid-template-columns: auto auto auto;
        grid-template-rows: 1fr;
        gap: 30px;
    }

    /*  DIV PRODUCTO */
    .contenedor .div_prod {

        width: 80%;
        height: 80%;
        background-color: beige;
        border: solid 1px red;
        justify-content: center;
        text-align: center;
        align-items: center;    
    }

    .contenedor .div_prod .pr_imagen {
        width: 100%;
        height: 100%;
        padding: 10px;
    }
    #robotica{
        
        padding: 10px;
        object-fit:fill;
    }
}
/*               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{
        margin-bottom: 50px;
    }
}