body{
    background-color: hsl(0, 0%, 8%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: "Inter", sans-serif;
}
#card{
    background-color: hsl(0, 0%, 12%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 10px;
    font-size: 14px;
    width: 300px;
}

#card-avatar{
    border-radius: 50%;
    width: 100px;
    height: auto;
}
#card-name{
    margin-bottom: 0.5em;
}
#card-location{
    margin-top: 0;
    font-size: 13px;
    font-weight: 600;
    color: hsl(75, 94%, 57%);
}

.card-button{
    width: 100%;
    padding: 13px;
    background-color: hsl(0, 0%, 20%);
    border: none;
    margin: 7px 0;
    color: white;
    font-weight: 700;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    transition: 0.6s ease-out;
}
.card-button:hover{
    background-color: hsl(75, 94%, 57%);
    color: black;
    transition: 0.3s ease-in-out;
    height: 55px;
}

.attribution{
    position: absolute;
    bottom: 5px;
}
.attribution a{
    color: hsl(75, 94%, 57%);
    
}