Back to battles

#130

Letter O

<div></div>
<div></div>
<style>
  body {
    background: #926927;
    display: grid;
    place-content: center;
    grid-template-columns: auto auto;
  }

  div {
    width: 60px;
    height: 120px;
    border: 20px solid;
    border-radius: 30px;
  }
  div:nth-child(1) {
    border-color: #6d480a;
    translate: 40px;
  }
  div:nth-child(2) {
    border-color: #ffffff;
    translate: -40px;
  }
</style>

21

3/8