<div class="container">
<div class="pic">
<img src="https://habrastorage.org/webt/ox/hq/et/oxhqetunjqee0ydcvfousi_aoo8.png" class="pic__item pic__item_pos_top">
<img src="https://habrastorage.org/webt/ox/hq/et/oxhqetunjqee0ydcvfousi_aoo8.png" class="pic__item pic__item_pos_bottom">
</div>
<div class="pic">
<img src="https://habrastorage.org/webt/71/gu/sd/71gusdp5o8fk9dxgtsvwx-f8ewy.png" class="pic__item pic__item_pos_top">
<img src="https://habrastorage.org/webt/71/gu/sd/71gusdp5o8fk9dxgtsvwx-f8ewy.png" class="pic__item pic__item_pos_bottom">
</div>
</div>
body {
display: flex;
justify-content: center;
align-items: center;
background-color: #4f4f4f;
min-height: 100dvh;
margin: 0;
box-sizing: border-box;
padding: 50px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 50px;
}
.pic {
width: 180px;
height: 180px;
background: linear-gradient(
0deg,
rgb(79, 59, 34) 19%,
rgb(255, 193, 126) 100%
);
border-radius: 50%;
position: relative;
z-index: 0;
}
.pic__item {
width: 255px;
height: 255px;
position: absolute;
left: 50%;
bottom: -20px;
transform: translateX(-50%);
}
.pic__item_pos_bottom {
clip-path: ellipse(98px 108px at 50% 50%);
}
.pic__item_pos_top {
clip-path: ellipse(60% 50% at 50% 15%);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.