:root {
    --color1: #F2F5F9;
    --color2: #FFFFFF;
    --color3: #111729;
    --color4: #677489;
    --font_title: 'Poppins', sans-serif;
    --font_paragraph: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    background: var(--color1);
    font-size: 1rem; 

    display: grid;
    place-content: center;
}

.card {
    width: 418px;
    height: auto;
    border-radius: 14px;
    overflow: hidden;
    background: var(--color2);
}

.card_img_container {
    width: 100%;
    height: 240px;
    position: relative;
}

.card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay_img {
    position: absolute;
    left: 0;
    bottom: 0;
}

.card_body {
    width: 82%;
    height: auto;
    margin: auto;
}

.title {
    font-family: var(--font_title);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color3);
    margin-top: 20px;
}

.desc {
    font-family: var(--font_paragraph);
    color: var(--color4);
    margin-top: 20px;
    font-weight: 500;
    line-height: 24px;
}

.avatar_container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;

    margin-top: 80px;
}

.avatar_icon {
    width: 40px;
    height: auto;
    border-radius: 100px;
}

.avatar_desc {
    width: 100%;
    font-family: var(--font_paragraph);
}

.avatar_name {
    color: var(--color3);
    font-weight: 600;
    display: block;
}

.avatar_profession {
    font-weight: 600;
    color: var(--color4);
    display: block;
    font-size: 0.8rem;
}