@import url('https://fonts.googleapis.com/css2? family= Questrial & display=swap');
@import url('https://fonts.googleapis.com/css2? family= Calabacín & family= Questrial & display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@700&display=swap');
/* diseño general */
*{
    background-color: #778c43;
    color: black;
    font-family: 'Questrial', sans-serif;
}
/* diseño del texto */
h1{
    color: white;
    font-family:  'Zen Maru Gothic', sans-serif;
    text-align: center;
    width: 80%;
    font-size: 11mm
}
.cabecera{
    color:white;
    text-align: center;
    font-family: 'Libre Bodoni', serif;
    font-size: 6mm;
    width: 100%;
    left: 0%;
    top: 0%;
    position: fixed;
    height: 40px;
    
}

/* diseño de nav */
.botones{
    display: flex;
    flex-direction: row;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 3%;
    align-items: center;

}
/* From uiverse.io by @aasisodiya */
button {
    background-color: #eee;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    width: 7em;
    border-radius: 10rem;
    color: 778c43;
    box-shadow: 0 0.3rem #dfd9d9;
    cursor: pointer;
   }
   
   button:active {
    color: white;
    box-shadow: 0 0.2rem #dfd9d9;
    transform: translateY(0.2rem);
   }
   
   button:hover:not(:disabled) {
    background:white;
    color: 778c43;
   }
   
   button:disabled {
    cursor: auto;
    color: grey;
   }


.presentacion{
    display: flex;
    width:70vw ;
    margin: auto;
    justify-content: space-around;
    height: 70vh;
    align-items: center;

}


.informacion{
    width: 45%;
    display: flex;
    flex-direction:column;
    margin: 20px;
    margin-bottom: 8%;

}
.foto{
    
    width: 27%;

}
.pie{
    color:white;
    margin-top: 0%;
    text-align: center;
    font-family: 'Libre Bodoni', serif;
    font-size: 6mm;
    

}