*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body{
    width: 100%;
}

.nav{
    background-color: rgb(134, 12, 88);
    width: 80vw;
    height: 10vh;
    margin: 10vh auto 0 auto;

    /* Aca acomodo los botones */
    display:flex;
    flex-direction:row;
    justify-content:space-around;
    align-items: center;
}

.titulo{
    width: 100%;
    height: 25vh;
    color: rgb(255, 255, 255);

    display: flex;
    justify-content: space-around;
    font-style: oblique;
    font-size: 10px;
    font-family: 'Domine', serif;
}
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@700&display=swap');
.contenedor{
    display:flex;
    flex-direction:row;
    justify-content: center;
    align-items: center;
    margin-top: 5vh;
    width: 80%;
    margin: auto;
}
.parrafo{
    width: 80%;
    padding-right: 10%;
    text-align: justify;
   /*  margin-top: 30%; */
    font-size: xx-large;
    font-family: 'Domine', serif; 
}


.foto{
    width: 50%;
    align-self: center;
    margin-left: 0%;
}

.foto img{
    width: 100%;
    font-size: 2vmin;
    text-align: justify;
    border-radius: 10px;
    border-width: 10px;
    border-style: solid;
    border-color:rgb(134, 12, 88);

}

body{
    background: dimgray;
    color: #eee;
}

div{
    display: flex;
    justify-content: space-between;
}

/* comienza estilo de boton */

.button {
 background-color:floralwhite;
 border: none;
 padding: 10px;
 font-size: 2vmin;
 width: 10em;
 border-radius: 5px;
 color: rgb(134, 12, 88);
 box-shadow: 0 0.4rem #dfd9d9;
 cursor: pointer;
 text-align: center;
}

.button:active {
 color: white;
 box-shadow: 0 0.2rem #dfd9d9;
 transform: translateY(0.2rem);
}

.button:hover:not(:disabled) {
 background: rgb(240, 169, 228);
 color: white;
 text-shadow: 0 0.1rem #bcb4b4;
}

.button:disabled {
 cursor: auto;
 color: grey;
}

/* termina estilo de boton */

/* titulo e informacion de la persona */
.titulo{
    font-size: 8vmin;
    text-align: center;
}

.info{
    font-size: 4vmin;
    text-align: center;
}

/* formato de imagen */

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