Back to battles

#151

Pawn

<div></div>
<div></div>
<div></div>
<div></div>
<span></span>
<style>
  body {
    background: #f5d6b4;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 5px;
    margin: 0;
  }

  div {
    background: #dd6b4d;
  }

  div:nth-child(1) {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  div:nth-child(2) {
    width: 80px;
    height: 20px;
    border-radius: 8px 8px 14px 14px;
  }

  div:nth-child(3) {
    width: 90px;
    height: 65px;
    position: relative;
    z-index: -1;
  }

  div:nth-child(4) {
    width: 140px;
    height: 40px;
    border-radius: 20px 20px 10px 10px;
  }

  span {
    width: 120px;
    height: 138px;
    background: #f5d6b4;
    position: absolute;
    transform: translate(-80px, -5px);
    border-radius: 50%;
    z-index: -1;
    box-shadow: 160px 0 #f5d6b4;
  }
</style>

25

4/8