@import url('https://fonts.googleapis.com/css2?family=Lora:ital@1&display=swap');


* {font-family: 'Lora', serif;
   background-color:lightgoldenrodyellow; 
   font-weight: 200;
}

.header p{
    width: 100vw;
    font-weight: 200;
    color: black;
    background-color: blueviolet;
    position: relative;
    top: 5;
}
.header{
    position: sticky;
    top:0vh;
}


/*Aca organizo barra de navegador*/
.navegacion{
     display: flex;
    justify-content: space-between;
    align-items: center;
    
}

/*Aqui formato de navegacion*/
.navegacion h1{
    font-size:3vmax; 
    background-color: azure;
    border-top: 4px aqua dotted;
    border-bottom: 4px aqua dotted;
    border-radius: 50px;
    color:rgb(10, 17, 14);
    font-style: italic;
    font-weight: 700;
    text-align: center;
    text-decoration: wavy;
    padding: 1%;
}
/*Aqui formato de informacion*/
.informacion p{
    font-size: large; 
    color:rgb(10, 17, 14);
    font-weight: 200; 
    font-style: oblique;
    text-align: justify;
     text-decoration: solid;
}
      /*Aqui formato  pie de pagina*/
    footer p{ 
        width: 100vw;
        font-weight: 200;
        color: black;
        background-color: blueviolet;
        position: relative;
        bottom: 0;
    }
    .footer{
        position: fixed ;
        width: 100%;
        bottom: 0;
    }

/*Aca determinamos estructura flexbox para el contenido */
.presentacion{
    /*flexbox*/
display: flex;
align-items:center;
justify-content:center;
width: 100vw;
height: 400px;
margin: 0;
}
.informacion{
    width: 80%;
}
.foto{
    width: 50%;
    margin: 12vw;
    align-items:center;
}
.foto img{
    width:100% ;
}
    /* From uiverse.io by @meermubashar */
button {
    width: 140px;
    height: 45px;
    font-size: 23px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
   }
   
   /* From uiverse.io by @meermubashar */
button {
    width: 140px;
    height: 45px;
    font-size: 23px;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    color: black;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
   }
   
   button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: pink;
    z-index: -1;
    transition: all 0.5s;
   }
   
   button:hover::before {
    width: 100%;
   }
   
   button:hover {
    color: black;
   }
   
   button:active:before {
    background: #b9b9b9;
   }