¡Vamos a hacerlo fácil!
<!DOCTYPE html><htmllang="en"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"><metaname="viewport"content="width=device-width, initial-scale=1.0"><title>Document</title></head><body></body></html>
<body>
<section>
<div class="card">
<div class="images">
<img class="background" src="https://images.pexels.com/photos/614117/pexels-photo-614117.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" alt="background">
<img class="profile" src="https://images.pexels.com/photos/5380635/pexels-photo-5380635.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" alt="me">
<img class="pais" src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Flag_of_Colombia.svg/1200px-Flag_of_Colombia.svg.png" alt="colombia">
</div>
<div class="info">
<p class="name">Juan Pablo Peña Franco</p>
<p class="university">EAFIT</p>
<p class="job">Working at <a href="https://codebullsteam.com/" id="codebulls">CodeBulls</a></p>
<p class="date">01/01/2023 - Today</p>
</div>
</div>
</section>
</body>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&family=Righteous&display=swap');
body {
background-color: #19A7CE;
display: flex;
justify-content: center;
}
section {
display: flex;
justify-content: center;
}
.card {
width: 400px;
height: 475px;
border-radius: 20px;
overflow: hidden;
background-color: #F6F1F1;
box-shadow: 008px4pxrgba(0, 0, 0, 0.3);
}
.card.images {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
height: 200px;
position: relative;
}
.card.images.background {
width: 100%;
height: 100%;
}
.card.images.profile {
width: 150px;
height: 150px;
border-radius: 50%;
border: 2px solid white;
margin: -100px;
box-shadow: 008px1pxrgba(0, 0, 0, 0.3);
}
.card.images.pais {
width: 40px;
height: 40px;
border-radius: 50%;
position: absolute;
bottom: -50px;
right: 125px;
/* box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3); */
}
.card.info {
text-align: center;
margin-top: 75px;
font-family: 'Poppins';
cursor: default;
}
.card.info.name {
font-weight: bold;
}
.card.info.date {
color: #898580;
}
.card.info.job#codebulls {
color: #146C94;
text-decoration: none;
}
¡Resultado!
Nota: recuerda que puedes modificar los campos a tu gusto.