@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    height: 100vh ;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}
.image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color:#4070f4 ;
    padding: 3px;
    margin-bottom: 10px;
}
.profile-card{
    max-width: 370px;
    width: 100%;
    background-color: white;
    border-radius: 24px;
    padding:24px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.profile-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 36%;
    width: 100%;
    border-radius: 24px 24px 0 0 ;
    background-color: #4070f4;
}

.image .profile-image{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}

.profile-card .text-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    
}
.text-data .name{
    font-size:22px ;
    font-weight: 500;
}
.text-data .job{
    font-size:15px ;
    font-weight: 400;
}
.profile-card .media-buttons{
    display: flex;
    align-items: center;
    margin-top:15px      ;
}
.media-buttons .link{
    background-color: #4070f4;
    text-decoration: none;
    margin: 0 8px;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
}
.profile-card .buttons{
    display: flex;
    align-items: center;
    margin-top: 25px;

}
.buttons .button{
    background-color: #4070f4;
    padding: 8px 24px;
    margin: 0 10px;
    border-radius: 24px;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttons .button:hover{
    background-color: #0e4bf2;
}

.profile-card .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 ;
}