Back to battles

#131

Letter W

<div></div>
<div></div>
<style>
  body {
    background: #e38f66;
    display: grid;
    grid-template-columns: auto auto;
    place-content: center;
  }

  div {
    width: 60px;
    height: 100px;

    border: 30px solid #62306d;
    border-top: 0;
    border-radius: 0 0 100px 100px;
  }
  div:nth-child(1) {
    translate: 15px 15px;
  }
  div:nth-child(2) {
    border-color: #fffbda;
    translate: -15px 15px;
    z-index: -1;
  }

  div:nth-child(1)::after {
    content: '';
    height: 30px;
    width: 30px;
    position: absolute;
    background: #62306d;
    inset: -30px 0 0 -30px;
    border-radius: 20px 20px 0 0;
    box-shadow:
      90px 0 #62306d,
      180px 0 #fffbda;
  }
</style>

21

3/8