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

.body {
    width: 100%;
        background-color: rgb(207, 180, 237);
        height: 100%;
     }

    /* aca comienza los estilos de la barra de navegacion*/
.nav{
    width: 100%;
    height: 10vh;
    padding-top: 1rem;
    
    display: flex;
    flex-direction: row;
    
    align-items: center;
    justify-content: space-around;
    text-transform: capitalize;

    }

    @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300&display=swap');

.nombre{
    width: 100%;
    height: 20vh;
    color: blueviolet;

    display: flex;
    justify-content: space-around;
    font-style: oblique;
    font-size: larger;
    font-family: 'Rajdhani', sans-serif;
    text-decoration: underline;
}

.parrafo{
    width: 60%;
    padding-right: 10%;
    padding-left: 10%;
    color: blueviolet;
    text-align:justify;
    font-family:'Ysabeau', sans-serif;
    font-size: 150%;
    line-height: 1cm;
    width: 50%;
    align-self: center;
    
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Rajdhani:wght@300&family=Ysabeau:wght@300&display=swap');
.fotoperfil{
    width: 40%;
    align-self: center;
    
}

.fotoperfil img{
    width: 100%;
    border-radius: 20%;

    border-width: 10px;
    border-style: solid;
    border-color: blueviolet;
}


.container{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
}

.btn {
    padding: 1rem 2rem;
    font-weight: 700;
    background: rgb(200, 153, 244);
    color: blueviolet;
    border-radius: .5rem;
    border-bottom: 2px solid blueviolet;
    border-right: 2px solid blueviolet;
    border-top: 2px solid rgb(200, 153, 244);
    border-left: 2px solid rgb(200, 153, 244);
    transition-duration: 1s;
    transition-property: border-top, 
       border-left, 
       border-bottom,
       border-right,
       box-shadow;
   }
   
   .btn:hover {
    border-top: 2px solid blueviolet;
    border-left: 2px solid blueviolet;
    border-bottom: 2px solid rgb(238, 103, 238);
    border-right: 2px solid rgb(238, 103, 238);
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px;
   }




































































































