JSFiddle - React, Tailwind, and code Playground
by Felis Catus
HTML
<div class="shadowman">
</div>
CSS
.shadowman {
position: relative;
width: 20px;
height: 20px;
left: 50px;
border-radius: 10px;
background: blue;
box-shadow: 0 22px 0 0 blue,
-20px 30px 0 0 blue, 20px 30px 0 0 blue, -40px 40px 0 0 blue, 40px 40px 0 0 blue,
0 44px 0 0 blue, 0 66px 0 0 blue,
-11px 86px 0 0 blue, 11px 86px 0 0 blue, -21px 106px 0 0 blue, 21px 106px 0 0 blue,
-31px 126px 0 0 blue, 31px 126px 0 0 blue;
}