@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bangers&family=Chewy&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Jaro:opsz@6..72&family=Poppins:wght@300;400;500;600&display=swap');
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
height:100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #c7e9e6;
}
.profile-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    width: 100%;
    background: #7EB0AC;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    
}
.profile-card::before {
    content: "";
    top: 0;
    left: 0;
    border-radius: 24px 24px 0 0;
    position: absolute;
    height: 36%;
    width: 100%;
    background-color: #77a49b;
}
.image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 500%;
    padding: 20px;
    margin-bottom: -10px
}
.image .profile-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #93cec2
}
.profile-card .text-data {
display: flex;
flex-direction: column;
align-items: center;
color: #141414;
}
.text-data .name {
    font-size: 24px;
    font-weight: 500;

}
.text-data .job {
    font-size: 18px;
    font-weight: 400;

}
.profile-card .media-buttons{
    display: flex;
    align-items: center;

}
.media-buttons .link{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1f1f1;
    font-size: 18px;
    height: 34px;
    width:34px;
    border-radius: 50px;
    margin: 0 8px;
    background-color: aquamarine;
    text-decoration: none;
}
.profile-card .buttons{
display: flex;
align-items: center;
margin-top: 25px;
}
.buttons .button{
    color: #f1f1f1;
    font-size: 14px;
    font-weight: 400;
    border: none;
    border-radius: 24px;
    margin: 0 10px;
    padding: 8px 24px;
    background-color: #698b88;
    cursor: pointer;
    transition: all 0.3s ease;
}
.buttons .button:hover{
    background-color: #5d8682
}
.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 #5d8682;
    border-left: 2px solid #5d8682;
}
.data i{
    font-size: 18px;
    margin-right: 6px
}