@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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&family=Sora:wght@100..800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.card {
    width: 418px;
    height: auto;
    border-radius: 1rem;
    background-color: #FFFFFF;
}

.card .images {
    position: relative;
}

.card .images .hero-image {
    border-radius: 1rem 1rem 0 0;
}

.card .overlay {
    position: absolute;
    bottom: -1px;
    left: 0;
}

.card .content {
    margin-bottom: 24px;
    margin-inline: 32px;
}

.card .content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #111729;
    margin-bottom: 12px;
}

.card .content h2 {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 24px;
    color: #4A5567;
}

.card hr {
    height: 1px;
    color: #F2F5F9;
    background-color: #F2F5F9;
    border: none;
}

.card footer {
    margin-block: 24px;
    margin-inline: 32px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    font-family: "Lato", sans-serif;
}

.card footer .avatar {
    border-radius: 50%;
    width: 40px;
}

.card footer h4 {
    color: #111729;
}

.card footer h5 {
    color: #4A5567;
}