* {
    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: 1300px;
}

.titulo {
    background-color: brown;
    height: 150px;
}

.img_logo{
    margin-top: 15px;
    width: 110px;
    height: 110px;
    margin-left: 145px;
    
}

.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;

}

.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: 17px;    
}


.form_quejas_y_reclamos {
    border: solid black 1px;
    width: 350px;
    height: 390px;
    margin-left: 20px;
    text-align: center;
    padding: 50px;
    box-shadow: 0px 0px 30px black ;
    
}

.correo {
    margin-bottom: 15px;
}

.cuadro_reclamos{
    height: 220px;
    width: 250px;
}

.boton {
    margin-top: 15px;
    width: 90px;
    height: 20px;
    margin-bottom: 50px;
}

