Back to battles

#204

Deadpool

<div></div>
<style>
  body {
    background: #f3ac3c;
    display: grid;
    place-content: center;
  }
  div {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    border: 18px solid #9f3333;
    background: linear-gradient(
      to right,
      #000000 0 65px,
      #9f3333 65px 100px,
      #000000 100px
    );
    translate: 0 4px;
  }

  div::after {
    content: '';
    width: 30px;
    height: 14px;
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -65px -12px;
    border-radius: 0 0 30px 30px;
    rotate: 27.5deg;
  }
  div::before {
    content: '';
    width: 30px;
    height: 14px;
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: 34px -12px;
    border-radius: 0 0 40px 40px;
    rotate: -29deg;
  }
</style>

32

2/8