Back to battles

#184

India

<div>
  <span></span>
  <span></span>
  <span></span>
</div>
<style>
  body {
    background: linear-gradient(
      to bottom,
      #f19e4b 33.3%,
      white 33.3% 66.6%,
      #3f8627 66.6%
    );

    display: grid;
    place-content: center;
  }

  div {
    height: 80px;
    width: 80px;
    background: #00007b;
    border-radius: 50%;
    background: radial-gradient(#00007b 10px, #fff 10px 30px, #00007b 30px);
  }

  span {
    width: 4px;
    height: 80px;
    background: #00007b;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }

  span:nth-child(2) {
    rotate: 60deg;
  }
  span:nth-child(3) {
    rotate: 120deg;
  }
</style>

29

7/8