Back to battles

#134

Wig

<div></div>
<div></div>
<style>
  body {
    background: #62306d;
    display: grid;
    grid-template-columns: auto auto;
    place-content: center;
    align-content: center;
  }
  div {
    width: 80px;
    height: 160px;
    background: #f7ec7d;
  }

  div:nth-child(1) {
    border-radius: 100px 0 50px 0;
  }
  div:nth-child(2) {
    border-radius: 0 100px 0 50px;
  }
</style>

22

4/8