.wrapper {
display: flex;
width: 250px;
height: 96px;
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0.11),
rgba(0, 0, 0, 0)
);
border-radius: 50px 0px 0px 50px;
justify-content: start;
align-items: center;
}
.image {
width: 96px;
height: 96px;
object-fit: contain;
border-radius: 50%;
justify-content: center;
align-items: center;
display: flex;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
background-color: black;
}
.text {
font-size: 20px;
color: white;
padding: 16px;
align-self: start;
}