body {
    background-color: hsl(0, 0%, 8%);
    font-family: 'inter', sans-serif;
}


.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: hsl(0, 0%, 12%);
    border-radius: 10px;
    margin: 20px;
    width: 350px;
    height: 600px;
    border-radius: 3%;
}

.container .card .avatar {
    border-radius: 50%;
    margin-top: 33px;
    height: 80px;
}

.container .card .name {
    color: hsl(0, 0%, 100%);
    margin-top: 26px;
    font-weight: 400;
}

.container .card .local {
    color: hsl(75, 94%, 57%);
    margin-top: 5.5px;
    font-size: 13px;
    font-weight: 600;
}

.container .card .info {
    color: hsl(0, 0%, 100%);
    font-weight: 400;
    margin-top: 27px;
    margin-bottom: 20px;
    font-size: 13px;
}

.card {
    width: 350px;
    /* ... */
}

ul.redes {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

li {
    width: 100%;
    max-width: 300px;
    max-height: 200px;
    margin-bottom: 10px;
}

a {
    display: block;
    width: 100%;
    background-color: hsl(0, 0%, 20%);
    color: white;
    text-align: center;
    padding: 19px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.5s ease;
}

a:hover {
    background-color:hsl(75, 94%, 57%);
}