@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');

*{   
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f4f4f4;
}

.profile-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 370px;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-radius: 24px; 
    padding: 25px; 
}

.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% ;  
    object-fit: cover;
    border-radius: 50%;
    border: #fff solid 3px  ;
}

.profile-card .text-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

.text-data .name {
    font-size: 22px;
    font-weight: 500;
    color: #030450;
}

.text-data .Jop {
    font-size: 16px;
    font-weight: 200;
    color: #4f5082;
}

.profile-card .media-buttons{
    display: flex;
    align-items: center; 
}

.media-buttons .link{
    height: 30px;
    width: 30px;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 7px;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.profile-card .buttons{
    display: flex;
    align-items: center;
    margin-top: 15px;

}
.buttons .button{
    padding: 8px 20px;
    border: none;
    outline: none;
    background: #4070F4;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.buttons .button:hover{
    background: #bbcaf3;
}