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



body {
    background-color: floralwhite;
    color: dimgrey;
    font-family: sans-serif;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

html {
    height: -webkit-fill-available;
}

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

}

header ul li a {
    border-radius: 20px;
    color: #53215B;
    background-color: #CBCBD5;
    width: 100%;
    height: 180%;
    margin: .5em .2em;
    padding: .2em .4em;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li a:hover{
    background-color: #53215B;
    color: rebeccapurple;
}

main {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: .37em;
}

.perfiles {
    margin: .5em auto;
    text-align: center;
    max-width: 20em;
}
.perfil{
    display: flex;
}
.perfil img {
    border-radius: 50%;
    width: 30vw;
    height: 30vw;
    max-width: 6em;
    max-height: 6em;
    margin: 1em;
}
.perfiles a{
    color: rebeccapurple;
    text-decoration: none;
    font-size: .75em;
    margin-top: 4em;
    margin-bottom: 4em}



p, h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5em;
}
    font-family: sans-serif;
}

h1, h3, h4{
    color: darkblue;
}

main ul {
    list-style: none;
}

footer{
    background-color: #2e065d;
    display: block;
    padding: .7em;
    flex-grow: 0;
    font-size: .7em;
    padding: .5em;
    text-align: center
}