@charset "utf-8";


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


body{
    background-color: rgb(235, 168, 255);
    font-family: sans-serif;
    font-size: 10pt;
    margin: auto;
    padding: 0em;
    color: #950033;
    min-height: 100vh;
    list-style: none;
    
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    align-content: center;
    align-items:flex-end;
    
    
    
}

main{
  width: 100%;
    padding: 2em;
    margin: 0em;
    display: flex;
    flex-direction: column;
    align-content: center;
    
}

img{
    max-width: 100%;
    height: auto;
    margin: auto;
    padding: 1em;
    
    display: flex;
    justify-content: center;
}

header{
    background-color: #b56db3;
    width: 100%;
    height: 4em;
    margin: 0em;
    padding: 1em;
    font-size: 12pt;
    display: flex;
    justify-content:space-between;
    align-items:center;
    
}

header nav ul{
    list-style: none;
    display: flex;
    margin: 0em;
    padding: 0em;
    justify-content: space-around;
    
}

header nav ul li a{
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    background-color: #913b98;
    padding: 0.5em;
    margin: 0.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    
}


h1{
    color: #ce0057;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 22pt;
    display: flex;
    justify-content: center;
}

main p{
    text-align:center; 
}

.usuario img {
    border-radius: 50%;
    width: 50vw;
    height: 50vw;
    max-width: 15em;
    max-height: 15em;
    border: .25em solid grey;
    box-shadow: 0 .35em .5em rgba(0, 0, 0, .35) inset, 0 .35em .5em rgba(0, 0, 0, .35);
}

section{
    text-align: center;
}

section h2{
    color: rgb(235, 168, 255);
    background-color: rgb(191, 70, 121);
    margin-top: 0.5em;
    margin-bottom: 0.2em;
    padding: 0.2em;
    padding-left: 0.5em;
    text-align:center; 
}

section ul li a{
    color: #ce0057;
    font-size: 12pt;
    font-weight: bold;
    font-style: italic;
}

.redes{
    color: #ce0057;
    font-size: 12pt;
    font-weight: bold;
    font-style: italic;
}


.destacado{
    color: rgb(204, 0, 196);
}

aside{
    margin: auto;
    padding: 0.5em;
    color: black;
    font-size: 8pt;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
}

footer{
    width: 100%;
    height: 10em;
    margin: auto;
    padding: 2em;
    background-color: #f9e7ff;
    color: black;
    font-size: 8pt;
}