Back to battles

#138

Lotus

<div></div>
<div></div>
<div></div>
<style>
  body {
    background: #926927;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  div {
    width: 100px;
    height: 100px;
    background: #6d480a;
    border-radius: 0 100px;
  }

  div:nth-child(2) {
    rotate: 45deg;
    background: #ffffff;
  }
  div:nth-child(1) {
    translate: 50px 20px;
  }
  div:nth-child(3) {
    rotate: 90deg;
    translate: -50px 20px;
    position: relative;
    z-index: -1;
  }
</style>

22

4/8