:root {
    --header-color:orangered;
    --bg-color: #eee;
    --text-color: red;
}

* {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
}

body {
    background-color: var(--bg-color);;
}

.container {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

header {
    background-color: var(--header-color);
    text-align: center;
    height: 30vh;
}

header .container {
    position: relative;
    bottom: -50%;
}

.profile-avatar {
    border-radius: 50%;
    margin-bottom: 24px;
    width: 180px;
    height: 180px;
}

.profile-name {
    font-size: 2em;
}

.profile-username {
    margin-top: 16px;
    font-size: 1.1em;
}

.numbers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.numbers-item {
    font-size: 3em;
    font-weight: bold;
}

.numbers-item h4 {
    font-size: .3em;
}

.readme{
    font-size: 0.8em;
    /* margin-top: 1em;
    margin-bottom: 1em; */
    text-align: left;
    padding: 0;
    margin: 1em;
}

.contato{
    padding-top: 1em;
    display: flex;
    justify-content:center;
}

.contato-link{
    padding: 0;
    display: flex;
    gap: 20px;
}

.link-acesso {
    background-color: var(--header-color);
    color: var(--bg-color);
    padding: 8px 16px;
    display: inline;
    margin-top: 24px;
    text-decoration: none;
    border-radius: 20px;
    
}