@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: hsl(0, 0%, 8%);
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #ffff;
    font-family: "Inter", serif;
}
#social-content-container{
    text-align: center;
}

#social-content {
    background-color: hsl(0, 0%, 12%);
    width: 279px;
    height: 470px;
    padding: 1.5em;
    border-radius: 10px;
}


figure #pfp{
    border-radius: 100%;
    width: 70px;
    height: 70px;
}

figure{
    font-size: 14px;
}

figcaption .user-name{
    font-size: 20px;
    font-weight: 700;
    margin-top: 1em;
}

figcaption .bio{
    font-size: 12px;
}

figcaption .location{
    color: hsl(75, 94%, 57%);
    font-weight: 800;
    margin-top: 0.55em; 
    margin-bottom: 1.1em;
    font-size: 12px;
}


ul{
    margin-top: 1em;
    list-style-type: none;
    font-weight: 600;
}

#social-links a{
    text-decoration: none;
    color: #ffff;
}

#social-links li{
    margin: 0.8em 0;
    background-color:hsl(0, 0%, 20%) ;
    padding: 0.6em 0;
    border-radius: 5px;
}

#social-links li:hover,
li:focus{
    background-color: hsl(75, 94%, 57%) ;
    color: hsl(0, 0%, 20%);
}



