* {
    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: 1050px;
}

.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;    
}

.solicitar_mesero {
    border: solid black 1px;
    width: 290px;
    height: 350px;
    margin-left: 50px;
    padding-top: 50px;
    box-shadow: 0px 0px 30px gray;
    
}

.solicitar_mesero b{
    margin-left: 40px;
    margin-top: 80px;
    

}

.caja_mesa {
    margin-top: 10px;
    border: solid black 1px;
    margin-left: 60px;

}

.img_input_llamada {
    width: 80px;
    height: 80px;
    margin-left: 110px;
    margin-top: 90px;


}




