* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 14px;
    font-family: sans-serif;
    color: hsl(0, 0%, 100%);
}

.body {
    height: 100vh;
    background: hsl(0, 0%, 8%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card--user {
    height: 40em;
    width: 28em;
    background:  hsl(0, 0%, 12%);
    border-radius: 1.5em;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: absolute;
}

.card--user .img--user {
    height: 6em;
    width: 6em;
    border-radius: 100%;
    display: inline;
    margin-top: 2em;
}

.contenidos .name {
    margin-top: .5em;
    font-size: 2em;
}

.contenidos .country {
    margin-top: .4em;
    color: hsl(75, 94%, 57%);
}

.contenidos .type--work {
    margin-top: .5em;
}

.card--user .contenidos {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card--user .container--nav {
    height: 100%;
    margin-top: 2em;
}

.container--nav .links {
    height: 3em;
    background:hsl(0, 0%, 20%);
    margin: 1em;
    border-radius: .5em; 
    list-style: none;
    
}

.container--nav .links:active, a:active{
    background: hsl(75, 94%, 57%);
    cursor: pointer;
    border-radius: .5em;
    color: hsl(0, 0%, 8%);
}


.container--nav .links a{
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: block;
    padding-top: 1em;
    font-weight: 600;
  
}


