@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    font-family: "Poppin" , sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;

}

.profilecard{
     display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    width: 100%;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    position: relative;

    



}

.image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: #4070f4;
    padding: 3px;
    margin-bottom: 10px;
}

.image .profileimage{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffff;


}

.profilecard .text{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;

}

.text .name{
    font-size: 24px;
    font-weight: 500;

}

.text .title{
     font-size: 15px;
    font-weight: 400;

}

.profilecard .media{
    display: flex;
    align-items: center;
    margin-top: 15px;

}

.media .link{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    

    height: 34px;
    width: 34px;
    border-radius: 50%;
    margin: 0px 8px;
    background-color: #4070f4;
    text-decoration: none;
}

.profilecard .buttons{
    display: flex;
 align-items: center;
 margin-top: 25px;
}

.button{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 24px;
    margin: 0px 10px;
    background-color: #4070f4;
    padding: 8px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profilecard .analytics{
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.analytics .data{
    display: flex;
    align-items: center;
    color: #333;
    padding: 0 20px;
    border-right: 2px solid #e7e7e7;

}

.data:last-child{
    border-right: none;
}

.data i{
    font-size: 18px;
    margin-right: 6px;
}

.profilecard::before{
    content: "";
    top: 0;
    position: absolute;
    height: 36%;
    width: 100%;
    background-color: #4070f4;
    border-radius: 24px 24px 0 0;
}