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

article, aside, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    background-color: rgb(255, 255, 255);
    color: #3e3e3e;
    font-family: sans-serif;
    min-height: 100vh;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


header {
    background-color: #ffffff;
    color:#3e3e3e;
    min-width: 1em;
    margin: 0;
    text-decoration: none;
    font-size: 1em;
    font-family: sans-serif;
    font-weight: bold;    
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;  
}

main {
    background-color: rgb(250, 47, 86);
    flex-grow: 1;
    display: flex;  
    flex-wrap: wrap;
}

main img {
    max-width: 100%;
    height: auto;
   
}

main section p {
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-basis: auto;
    
}

main section h1 {
    background-color: #ffffff;
    color: rgb(255, 255, 255);
    padding: .5em 1.3em;
    font-family: sans-serif bold;
}

p {
   color: #ffffff 
}

h1 {
    color: rgb(255, 255, 255);
    font-family: sans-serif;
    
}

ul li {
    list-style-type: circle;
    display: block;
}



footer {
    color: #ffffff;
    font-weight: lighter;
    background-color: #404040;
    font-family: sans-serif;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;   
}



header img {
    padding: 1em 1em 1em 1em;
    list-style: none; 
    text-decoration:none;
    font-family: sans-serif;
    min-width: 7em;
    max-width: 100%;
    height: auto;
}

header ul {
    list-style: none;
    display: flex;
    
}

header ul li {
    width: 3.5em;
    height: 2em;
    margin-left: .50em;
    display: flex;
}

header ul il a {
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    color: rgb(255, 62, 99);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;

}

.usuario {
    margin: auto;
    text-align: center;
    max-width: 20em;
}

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

section {
    width: auto;
    max-width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex-basis: auto;
    flex-direction: row;
    min-height: 25vh;

}

section a {
    color: #404040;
    text-decoration: none;
}

section a:hover {
    color: #404040;
    text-decoration: underline;
}



header nav ul {
    padding: 0em 0em 0em 0em;
    color: #3e3e3e;
    font-size: auto;
    list-style: none; 
    border: 1em 0em 3em 0em solid rgb(255, 255, 255);
    text-decoration:none;
    font-family: sans-serif;
    width: 5em;
    min-width: 15em;
    display: flex;
    justify-content: space;
    align-content: stretch;
    flex-wrap: nowrap;
}









.usuario {
    margin: auto;
    text-align: center;
    max-width: 20em;
}

    
.destacado {
    font-style: oblique;
    text-shadow: .1em .1em black;
}



html {
    display: block;
}


@media (min-width: 30em) {
    
    main {
        background-color: rgb(255, 96, 126);
        color: rgb(255, 255, 255)
    }
    
    .usuario {
        max-width: 35em;
        display: flex;
        align-items: flex-start;
    }
    .usuario img {
        width: 5em;
        max-width: 5em;
        height: 5em;
        max-height: 5em;
        margin-right: 1em;
    }
    .usuario div {
        text-align: left;
    }
    
}