Back to battles

#171

Pumpkin

<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<style>
  body {
    background: #784972;
    display: grid;
    place-content: center;
    place-items: center;
    grid-template-columns: repeat(5, 40px);
  }
  div {
    width: 100px;
    height: 150px;
    background: #f7ffcf;
    margin-top: 50px;
    border-radius: 50%;
    box-shadow: 0 0 0 10px #784972;
  }
  div:nth-child(3) {
    z-index: 2;
  }
  div:nth-child(4) {
    z-index: 1;
  }

  div:nth-child(1)::after {
    content: '';
    position: absolute;
    background: #f7ffcf;
    width: 22px;
    height: 55px;
    border-radius: 12px 12px 0 0;
    translate: 119px -50px;
    z-index: 3;
  }
</style>

28

3/8