@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    transition: 0.2s linear;
}

body
{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
}

.profile-card
{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.profile-card::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 24px 24px 0 0;
    height: 36%;
    width: 100%;
    background-color: #da1254;
}

.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%;
}

.profile-card .text-data
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-data .name
{
    font-size: 24px;
    font-weight: 500;
    color: #da1254;
}

.text-data .job
{
    font-size: 20px;
    font-weight: 400;
    color: #c312da;
}

.profile-card .media-buttons
{
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.media-buttons .link
{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: #5812da;
    text-decoration: none;
    transition: 0.7s;
}

.media-buttons .link :hover
{
    scale: 1.1;
    color: #408ef4;
}