@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

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

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

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

.profile-card::before{
    content: '';
    position: absolute;
    background-color: #4070f4;
    width: 100%;
    height: 150px;
    top: 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-img{
    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: 600;
}

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

.profile-card .media-buttons{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.media-buttons .link{
    width: 34px;
    height: 34px;
    background-color: #4070f4;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
}

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

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

.buttons .button:hover{
    background-color: #2154e1;
}

.profile-card .analytics{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

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

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

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

