body{
    box-sizing: border-box;
    margin: auto 0px
}

.container{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsl(0, 0%, 8%);
}

.social-profile-container{
    width: 340px;
    padding: 30px;
    border-radius: 20px;
    background: hsl(0, 0%, 12%);
    /* z-index: 1;
    border: 1px solid black; */
}

.social-holder-image{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px
}

.social-holder-image img{
    background-size: cover;
    background-position: center;
    border-radius: 100%;
    width: 130px;
    height: 130px;
}

.social-profile-holder{
    text-align: center;
}

.social-holder-name{
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    display: block;
    padding: 7px;
}

.social-holder-address{
    color: hsl(75, 94%, 57%);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.social-holder-description{
    text-align: center;
    color: lightgrey;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    margin-top: 20px;
}

.socials-container{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 22px;
}

.socials{
    padding: 10px 0px;
    text-align: center;
    background: hsl(0, 0%, 20%);
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 700;

}

.socials:active{
    background: hsl(75, 94%, 57%);
    color:hsl(0, 0%, 20%)
}