Back to battles

#91

Reflection

<div></div>
<style>
  body {
    background: linear-gradient(to bottom, #d25b70 0 50%, #6cb3a9 50%);
    display: grid;
    place-content: center;
  }
  div {
    width: 200px;
    height: 200px;
    background: linear-gradient(
      to bottom,
      #f6df96 0 100px,
      #6cb3a9 100px 115px,
      #f6df96 115px 125px,
      #6cb3a9 125px 140px,
      #f6df96 140px 150px,
      #6cb3a9 150px 165px,
      #f6df96 165px 175px,
      #6cb3a9 175px 190px,
      #f6df96 190px 195px
    );
    border-radius: 50%;
  }
</style>

16

5/8