Back to battles

#167

React India

<div></div>
<div></div>
<div></div>
<style>
  body {
    background: radial-gradient(circle, #73c6ea 20px, #0d1335 20px);
  }
  div {
    width: 230px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
  }

  div:nth-child(1) {
    border: 10px solid #fbfae2;
  }
  div:nth-child(2) {
    border: 10px solid #4fa07b;
    rotate: 120deg;
  }
  div:nth-child(3) {
    border: 10px solid #dc6638;
    rotate: 60deg;
  }
</style>

27

4/4