/* Colores y fuentes para todo */
*{
    background-color:rgb(231, 195, 252);
    color:rgb(255, 255, 255);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
/* Header y botones */
head{
    width: 100%;
    height: 30px;
    position: fixed;
    color:rgb(195, 87, 209);;
    text-align: center;
    font-size: 90px;
}
.botones{ 
    margin-top: 2%;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-around;
    z-index: 100;
}
/* descripción */
.presentacion{
    width: 57vw;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items:flex-start;
    align-self: center;
    justify-content:space-between;
    gap: 5%;
    padding-top: 10%;
   }

.minombre{
    font-size: 50px;
}

.texto{    
    display: flex;
    text-align: center;
    font-size: 25px;
}
   .foto {
    width: 30vw;
    display: flex;
    margin: auto;
    margin-top: 2%;
    float: left;
   }
   /*formato botones  */
  /* From uiverse.io by @Madflows */
  .botones{
    width: 100%;
    display: flex;
    background-color: transparent;
    justify-content: space-between;
    position: fixed;
    z-index: 100;
}

a{
background-color: transparent;
}
/* formato de botones */
/* From uiverse.io by @Madflows */
/* From uiverse.io by @adamgiebl */
button {
    background: linear-gradient(-45deg, #3f00b5, #9f69fe, #27c8b7, #3f00b5);
    background-size: 800% 400%;
    padding: 1em 2em;
    display: inline-block;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    color: white;
    transition: all .5s ease-in-out;
    animation: gradient 10s infinite cubic-bezier(.62, .28, .23, .99) both;
   }
   
   button:hover {
    animation: gradient 3s infinite;
    transform: scale(1.05);
   }
   
   button:active {
    animation: gradient 3s infinite;
    transform: scale(0.8);
   }
   
   @keyframes gradient {
    0% {
     background-position: 0% 50%;
    }
   
    50% {
     background-position: 100% 50%;
    }
   
    100% {
     background-position: 0% 50%;
    }
   }