.background {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: row;
    background-color: hsl(0, 0%, 8%);
}

.container {
    background-color: hsl(0, 0%, 12%);
    border-radius: 5%;
    margin-top: 125px;
    width: 320px;
    height: 555px;
}

.profile-pic {
    display: flex;
    justify-content: center;
}

.profile-pic img {
    width: 80px;
    margin-top: 35px;
    border-radius: 50%;
}

.name-location {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    /* border: 1px solid red; */
    color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.name-location h1 {
    font-weight: 500;
    margin-bottom: 4px;
}

.name-location h2 {
    color: hsl(75, 94%, 57%);
    font-size: 14px;
    font-weight: 350;
    margin-top: 1px;
}

.bio {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: white;
    display: flex;
    justify-content: center;
}

.button-container {
    height: 285px;
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}

.button-container a {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: white;
}

.button-container .btn-primary {
    background-color: hsl(0, 0%, 20%);
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 41px;
}