@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&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}
.profile-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 450px;
    width: 100%;
    border-radius: 25px;
    padding: 30px;
    background: #fff;
    box-shadow: 0px 5px 10px gray;
}

.image{
    position:relative;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-color: #4070f4;
    padding: 10px;
    margin-bottom: 20px;
}

.image:hover{
    box-shadow: 0px 0px 5px 5px grey;
}

.image .profile-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
}

.profile-card .text-data{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-data .name{
    font-size: 22px;
    font-weight:500;
}

.text-data .proffession{
    font-size: 15px;
    font-weight:400;
}

.profile-card .media-buttons{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.media-buttons .link{
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 20px;
    height: 34px;
    width: 34px;
    margin: 0 8px;
    border-radius: 50%;
    background-color: #4070f4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-card .buttons{
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.buttons .button{
    color:#fff;
    font-size: 16px;
    font-weight:500 ;
    border: none;
    border-radius: 25px;
    margin: 0 10px;
    padding: 8px 24px;
    background-color: #4070f4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttons .button:hover{
    background-color: #0e4bf1;
    box-shadow: 0px 0px 5px 5px grey;
}

.media-buttons .link:hover{
    background-color: #0e4bf1;
    box-shadow: 0px 0px 5px 5px grey;
}