/* Formatos de l pagina inicial */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Roboto:ital,wght@1,100&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(188, 106, 243);
}

.botonera {
    background-color: blueviolet;
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-bottom: 1rem;

}



/* titulo e informacion de la persona */

/* formato de imagen */

.imagenes {
    display: flex;
    height: 50vmin;
    margin: auto;
}

.titulo {
    width: 100%;
    height: 20vh;


    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

    background-color:rgb(188, 106, 243);
    text-align: center;
    font-size: 200%;
    font-family: 'Merriweather', serif;
    color: white;
}

.texto {
    width: 65%;
    padding-right: 3%;
    margin: 5%;
    line-height: 180%;

    text-align: justify;
    font-size: 2, 9rem;
    font-family:'Merriweather', serif;
    color: white;
}

.foto {
    width: 20%;
    position: absolute;
    right: 8%;
    padding-top: 1%;
}

.foto img {
    width: 100%;
    border-radius: 10%;
}

.info {
    display: flex;
    flex-direction: row;
}





/* this button is inspired from this -- https://www.newline.co/pricing */
button {
    --width: 150px;
    --timing: 2s;
    border: 0;
    width: var(--width);
    padding-block: 1em;
    color: #fff;
    font-weight: bold;
    font-size: 1em;
    background: rgb(188, 106, 243);
    transition: all 0.2s;
    border-radius: 3px;
  }
  
  button:hover {
    background-image: linear-gradient(to right, rgb(250, 82, 82), rgb(250, 82, 82) 16.65%, rgb(190, 75, 219) 16.65%, rgb(190, 75, 219) 33.3%, rgb(76, 110, 245) 33.3%, rgb(76, 110, 245) 49.95%, rgb(64, 192, 87) 49.95%, rgb(64, 192, 87) 66.6%, rgb(250, 176, 5) 66.6%, rgb(250, 176, 5) 83.25%, rgb(253, 126, 20) 83.25%, rgb(253, 126, 20) 100%, rgb(250, 82, 82) 100%);
    animation: var(--timing) linear dance6123 infinite;
    transform: scale(1.1) translateY(-1px);
  }
  
  @keyframes dance6123 {
    to {
      background-position: var(--width);
    }
  }
  
  