JSFiddle - React, Tailwind, and code Playground

HTML

<div id="a"></div>
<div id="b"></div>
<div id="c"></div>
<div id="d"></div>

CSS

div {
    border: 1px solid black;
    background: grey;
}

#a {
    position: absolute;
    left: 0px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    z-index: 6;
}

#b {
    position: absolute;
    left: 90px;
    width: 200px;
    height: 100px;
    border-radius: 20px;
    z-index: 3;
}

#c {
    position: absolute;
    left: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: #fff;
    z-index: 4;
}

#d {
    border: none;
    width: 80px;
    height: 120px;
    background: #fff;
    z-index: 5;
    position: absolute;
    top: 0;
    left: 12px;
}