Back to battles

#148

Eight

<div a></div>
<div b></div>
<style>
  body {
    background: #926927;
    margin: 0;
  }

  div {
    width: 100px;
    height: 100px;
    border: 40px solid #6d480a;
    border-radius: 50%;
  }
  [a] {
    translate: 210px -90px;
  }
  [b] {
    translate: 310px -170px;
  }
  [b]::after {
    content: '';
    width: 25px;
    height: 25px;
    background: #6d480a;
    position: absolute;
    top: -60px;
    left: 30px;
  }
</style>

24

6/8