
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Domine&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Domine&family=Signika+Negative:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+2&display=swap');

html {
  scroll-behavior: smooth;
}

*{
  font-family: 'Baloo 2', cursive;
}


body {
  overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
    background: #4e0061; 
    padding-top: 6vmax; /* Relleno superior igual a la altura de la cabecera*/
  }

.cabecera {
width: 100%;
height: 6vmax;
top: 0;
left: 0;
position: fixed;
font-size: 1.3vmax;
font-family: 'Baloo 2', cursive;
text-align: center;
color: #ff67ff;

background-color: #4e0061;
}

.navegacion {
position: fixed;
width: 100vw;
height: 3vmax;
display: flex;
align-items: center;
justify-content: space-around;
background-color: rgb(125, 62, 145);
}

/* From uiverse.io by @menezes11 */
nav button{
  /* extraído de uiverse.io by @meermubashar */
    width: 20vmax;
    height: auto;
    font-size: 1.5vmax;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    color: rgb(255, 255, 255) ;
    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:#5b0077;
    z-index: -1;
    transition: all 0.5s;
   }
   
   button:hover::before {
    width: 100%;
   }
   
   button:hover {
    color: rgb(255, 255, 255);
   }
   
   button:active:before {
    background: #b9b9b9;
}

.presentacion {
  width: 100%;
 margin-top: 2vmax;
  
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;

  background-color: rgb(173, 140, 192);
}

.texto {
width: 80%;
height: auto;
margin: 1vmax;
padding-left: 5vmax;

display: flex;
flex-wrap: wrap;

font-size: 1.5vmax;
text-align: justify;


}
.foto {
width: 40%;
height: auto;
margin: 1vmax;
padding: 1vmax;
}

.foto img {
width: 80%;
height: auto;
border: 0.5vmax;
border-radius:100%;
border-style:outset;
border-color: #ff67ff;
}

.pie {
font-size: 1.3vmax;
width: 100vw;
height: 3vmin;
text-align: center;
color: aliceblue;
position: fixed;
padding-bottom: 1vmax;
}


