@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Josefin+Sans:wght@300&display=swap');

*{
    background-color: bisque;
}
.titulo{
/*     text-decoration:line-through;
 */    text-align: center;
    
    color: maroon;
    font-size: 35px;
}
.botones{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}
/* From uiverse.io by @Madflows */
button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    font-family: inherit;
    font-size: 15px;
   }
   
   button.learn-more {
    font-weight: 600;
    color: #ffb580;
    text-transform: uppercase;
    padding: 1.25em 2em;
    background: #ffd194;
    border: 2px solid #f18f1e;
    border-radius: 0.75em;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
   }
   
   button.learn-more::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #facdb8;
    border-radius: inherit;
    -webkit-box-shadow: 0 0 0 2px #e9a873, 0 0.625em 0 0 #db5e15;
    box-shadow: 0 0 0 2px #e49f39, 0 0.625em 0 0 #ffd9ae;
    -webkit-transform: translate3d(0, 0.75em, -1em);
    transform: translate3d(0, 0.75em, -1em);
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-box-shadow 150ms cubic-bezier(0, 0, 0.58, 1);
   }
   
   button.learn-more:hover {
    background: #ffe9e9;
    -webkit-transform: translate(0, 0.25em);
    transform: translate(0, 0.25em);
   }
   
   button.learn-more:hover::before {
    -webkit-box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
    box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
    -webkit-transform: translate3d(0, 0.5em, -1em);
    transform: translate3d(0, 0.5em, -1em);
   }
   
   button.learn-more:active {
    background: #ffe9e9;
    -webkit-transform: translate(0em, 0.75em);
    transform: translate(0em, 0.75em);
   }
   
   button.learn-more:active::before {
    -webkit-box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
    box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
    -webkit-transform: translate3d(0, 0, -1em);
    transform: translate3d(0, 0, -1em);
   }
/*  */
.descripcion_personal{
    text-align: justify;
    color: black;
    font-size: 20px;
    width: 60vw;
    margin: auto;
    font-family: 'Josefin Sans', sans-serif;
    display: flex;
    justify-content: space-around;
}
.textoybotones{
    width: 60%;
}




.imagen_propia{
    width: 30%;
}
.imagen_propia img{
    width: 100%;
}
.pie_de_pagina{
    text-align: right;
    font-family: 'Times New Roman', Times, serif;
    color: peru;
    font-size: 10px;
}
.header{
    background-color: sandybrown;
    color: sienna;
    width: 100vw;
    top: 0vh;
    position:fixed;
    text-align: center;
}
.pie_de_pagina{
    background-color: sandybrown;
    color: sienna;
    width: 100vw;
    bottom: 0vh;
    position:fixed;
    text-align: center;
}


