* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-titulo:rgb(245, 245, 245);
    --color-subtitulo: rgb(138, 138, 138);
    --color-parrafos: black;
    --fuente-principal: 'Times New Roman';
    --color-fondo: rgba(48, 44, 44, 0.274);
    --color-precios: green;

}

body{
    font-family:var(--fuente-principal);
    height: 2500px;
    
}

.titulo {
    background-color: brown;
    height: 150px;
}

.img_logo{
    margin-top: 15px;
    width: 110px;
    height: 110px;
    margin-left: 145px;
    
}

.poner_lado {
    display: flex;
}



.producto {
    margin-top: 30px;
    border-bottom: solid rgba(0, 0, 0, 0.233) 2px;
    padding: 10px;
    width: 360px;
    margin-left: 15px;
    box-shadow: inset 0 -50px 90px rgba(204, 83, 83, 0.432) ;
    box-shadow: 0px 0px 30px black;

    
}
.producto_imagen {
    width: 130px;
    height: 100px;
    margin-top: 0px;
}

.producto h2 {
    font-size: 17px;
    margin-left: 10px;
}

h1 {
    margin-top: 40px;
    margin-bottom: 80px;
    text-align: center;
        
}

.navegacion {
    height: 40px;
    width: 100%;
    background-color: brown;
    bottom: 0;
    position: fixed;
}

.navegacion_opciones {
    background-color: brown;
    display: flex;
    list-style: none;
    gap: 20px;
    margin-left: 20px;
    position: fixed;
    
}

.opciones_elementos {
    margin-top: 10px;
    background-color: rgb(206, 67, 67);
    padding: 1px;
    border-radius: 4%;

}
.opciones_elementos a {
    text-decoration: none;
    color: white;

}

.descripcion  {
    margin-left: 10px;
    margin-top: 5px;
    font-size: 15px;
}

.precio {
    color: var(--color-precios);
    text-align: end;

}

.subtitulos {
    background-color: rgba(235, 131, 131, 0.651);
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
    box-shadow: 0px 0px 30px red;
    width: 360px;
    margin-left: 15px;    
}




