@font-face {
    font-family: 'Inter';
    src: url(assets/fonts/Inter-VariableFont_slnt\,wght.ttf);
}
body {
    display: grid;
    min-height: 100vh;
    place-content: center;
    background-color: hsl(0, 0%, 8%);
}
.profile {
    text-align: center;
    padding: 2rem;
    background-color: hsl(0, 0%, 12%);
    color: hsl(0, 0%, 100%);
    font-family: 'Inter';
    font-size: 0.8rem;
    border-radius: 0.6rem;
    margin-bottom: 1rem;
}
.avatar {
    max-width: 5rem;
    max-height: 5rem;
    border-radius: 50%;
    padding-bottom: 0.9rem;
}
.name {
    font-weight: 400;
}
.location {
    color: hsl(75, 94%, 57%);
    font-weight: 600;
}
.buttons {
    display: flex;
    flex-flow: column;
    justify-items: center;
}
.button {
    width: 17rem;
    height: 2.5rem;
    margin: 0.5rem;
    background-color: hsl(0, 0%, 20%);
    border: none;
    color: hsl(0, 0%, 100%);
    font-family: 'Inter';
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 0.4rem;
}
button:hover {
    background-color: hsl(75, 94%, 57%);
    color: hsl(0, 0%, 12%);
    cursor: pointer;
}
.description {
    line-height: 0.8rem;
    margin-bottom: 2rem
}