@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,300&family=Poppins:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #fff;
}

.main{
    margin: 10px;
}

.main .title{
    font-size: 50px;
    margin-bottom: 15px;
    text-align: center;
    color: #000;
    font-family: 'League Spartan', sans-serif;
}

.main .card_container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card_container .card{
    max-width: 410px;
    margin-top: 50px;
    border-radius: 20px;
    background:#000;
    border: 0.5px solid #f1f5f9;
    padding: 15px;
    color: #f1f5f9;
    position: relative;
}

.user_content .name{
    font-size: 17px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
} 

.user_content .post{
    font-size: 15px;
    color: #fff;
    margin: 15px 0;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
    position: relative;
    left: 16px;
}

.user_content .post::before{
    content: "";
    height: 1px;
    width: 15px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: -16px;
}

.fa-solid{
    color: #ffc107;
}

.transparent{
    color: transparent;
}

.user_content .about{
    color: #cbd5e1;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    font-size: 13px;
}

.card .round_box{
    position: absolute;
    top: -20%;
    right: 10%;
    background:  #000 !important;
    width: 130px;
    height: 130px;
    border: 1px solid #f1f5f9;
    border-radius: 50%;

}

.card .img_box{
    position: absolute;
    top: -20%;
    right: 10%;
}

.card .img_box img{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 10px;
}

.card .squareBox{
    height: 90px;
    width: 136px;
    background: #000;
    position: absolute;
    top: 0;
    right: 9%;

}