

*{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height:100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffff;

}
.profile-card{
   display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 24px;
    position: relative;
}
.profile-card::before{
 content: '';
 position: absolute;
 height:36%;
 width: 100%;
 background-color: #4070f4;
 top: 0;
 left: 0;
 border-radius: 24px 24px 0 0 ;
}
.image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: #4070f4;
    padding: 3px;
     margin-bottom: 10px;

}
.image .profile-image{
    
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    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;
    margin-bottom: 5px;
}
.text-data .job{
    font-size: 15px;
    font-weight:400;
}
.profile-card .media-icons{
    display: flex;
    align-items: center;
  margin-top: 15px;
}
.media-icons .link{
    display:flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    background-color: #4070f4;
    margin: 0 8px;
    border-radius: 50%;
    height: 34px;
    width: 34px;
    
}
.profile-card .buttons{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.buttons .button{
    background-color: #4070f4;
    margin:0 10px;
    padding: 8px 24px;
    border-radius: 25px;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition:all 0.3s ease;
}
.buttons .button:hover{
    background: #000;
}

.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 #ccc9c9;
}
.data i{
    font-size: 18px;
    margin-right: 6px;

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