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

html{
    font-size: 62.5%;
}

body{
    font-family: "poppins", sans-serif;
}

.main--viewport{
    background-color: #141414;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main--card{
    background-color: #1F1F1F;
    width: 34rem;
    border-radius: 1.6rem;
}
.card--content{
    text-align: center;
    padding: 4rem;
}
.author--img{
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    margin-bottom: 1.4rem;
}
.author--name{
    font-size: 2.3rem;
    font-weight: 500;
    color: #e4e4e4;
    margin-bottom: 0.4rem;
}
.author--place{
    font-size: 1.3rem;
    color: #b9dc4e;
    font-weight: 600;
    margin-bottom: 1.8rem;
}
.author--about{
    font-size: 1.2rem;
    color: #c8c8c8;
    margin-bottom: 2rem;
}
/* .social--links{} */
.socials--list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    
}
.list--items{
    background-color: #333333;
    padding: 1rem;
    border-radius: .6rem;
}
.links{
    text-decoration: none;
    color: #e3e3e3;
    font-size: 1.3rem;
    font-weight: 600;
}