body{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:0;
    margin:0;
    height: 100vh;
    font-family: "Inter", sans-serif;
    background: hsl(0, 0%, 8%);
}
.social-tab{
    width:320px;
    height:550px;
    background: hsl(0, 0%, 12%);
    padding: 29px;
    border-radius: 1rem;
    text-align: center;
}
.profile img{
    width:124px;
    height: 84px;
    border-radius: 50%;
    object-fit:cover;
}
.name{
    color:hsl(0, 0%, 100%);
    font-weight:600;
    font-size: 24px;
    margin-bottom: 0;
}
.location{
    color: hsl(75, 94%, 57%);
    font-size: 14px;
    font-weight: 600;}
.bio{
    padding-top:5px;
    font-size: 14px;
    color:hsl(0, 0%, 100%);
    font-weight: 400;
}
.link-tabs{
    height: 320px;
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-decoration:none;
}
a{
    width:100%;
    height: 50px;
    text-align:center;
    line-height: 50px;
    text-decoration: none;
    background-color: hsl(0, 0%, 20%);
    border-radius: 10px;
    color:white;
    font-weight: 600;
}
a:hover{
    background:hsl(75, 94%, 57%);
    color:black;
    cursor:pointer;
}