* {
    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);

}

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

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

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


.container {
    width: 300px;
    height: 300px;
    background-color: var(--color-fondo);
    margin: 40px;
    padding: 40px;
    text-align: center;
    border-radius: 8%;
}

.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;

}

.slogan {
    margin-top: 110px;
    margin-left: 65px;
    background: var(--color-fondo);
    width: 250px;
    height: 80px;
    text-align: center;
    padding: 10px;
    line-height: 30px;
    border-radius: 5%;
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
}



