Preview

Jackson Moreno
UX/UI Designer loves design of Mobile Apps.
HTML
SCSS
*, ::after, ::before {
box-sizing: border-box;
}
/* css element */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;700;900&display=swap');
.card-user {
background-color: #303445;
padding: 20px;
border-radius: 20px;
width: 100%;
max-width: 440px;
position: relative;
img {
position: absolute;
width: 190px;
bottom: 0;
left: 20px;
}
.info {
margin-left: 210px;
.catg {
background-color: #ffffff;
padding: 5px 10px;
border-radius: 20px;
font-size: 12px;
color: #d20218;
display: inline-block;
}
h2 {
color: #ffffff;
font-size: 20px;
font-weight: 700;
margin-top: 25px;
margin-bottom: 10px;
}
p {
font-size: 14px;
line-height: 22px;
color: #ffffff;
margin-bottom: 0;
}
}
}
@media (max-width:576px) {
.card-user {
margin-top: 80px;
max-width: 232px;
img {
top: -90px;
}
.info {
margin-left: 0;
margin-top: 180px;
}
}
}