Back to battles

#42

Baby

<div>
  <p></p>
  <p></p>
  <span></span>
</div>
<style>
  body {
    background: #293462;
    display: grid;
    place-content: center;
  }
  div:nth-child(1) {
    width: 200px;
    height: 200px;
    background: #fe5f55;
    border-radius: 200px 200px 100px 100px;
    display: flex;
    overflow: hidden;
  }

  p,
  span,
  span::after {
    background: #fff1c1;
  }
  p {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    translate: 0 -66px;
  }

  span {
    position: absolute;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    top: 140px;
    left: 120px;
    box-shadow: 100px 0 #fff1c1;
  }

  span::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 10px;
    top: 80px;
    left: 60px;
    border-radius: 20px;
  }
</style>

08

3/3