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

body{
    background-color: hsl(0, 0%, 8%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: 14px;
}

.social-card{
    background-color: hsl(0, 0%, 12%);
    max-width: 400px;
    width: 100%;
    height:auto;
    border-radius: 10px;
    display: flex;
    
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
}

.social-card__img {
    width: 80%;
    
    display: flex;
    flex-direction: column;

}
.name{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    color: hsl(0, 0%, 100%);
    font-family: "Figtree", sans-serif;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.location{
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: hsl(75, 94%, 57%);
    margin-bottom: 30px;
    font-family: "Figtree", sans-serif;
}
.desc{
    color: hsl(0, 2%, 78%);
    font-weight: 400;
}

.social-card__img img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: 20px;
    border: 5px solid hsl(0, 0%, 20%);
    margin-inline:auto;
}
.links{
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    
}
.links:active{
    text-decoration: none;
}

button{
    background-color: hsl(0, 0%, 20%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
        cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    width: 80%;
    height: 40px;

}

.links:last-child button{
    margin-bottom: 50px;
}
