Back to battles

#64

Door Knob

<div></div>
<style>
  body {
    background: #191919;
    display: grid;
    place-content: center;
  }
  div {
    width: 100px;
    height: 100px;
    background: #e08027;
    border-radius: 50%;
    box-shadow: 0 0 0 30px #824b20;
  }

  div::after {
    height: 80px;
    width: 80px;
    border: 20px solid #fff58f;
    position: Absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border-radius: 50%;
    border-top-color: transparent;
    border-left-color: transparent;
    rotate: 45deg;
    content: '';
  }
  div::before {
    height: 20px;
    width: 20px;
    position: Absolute;
    top: 140px;
    left: 140px;
    background: #fff58f;
    border-radius: 50%;
    content: '';
    box-shadow: 100px 0 #fff58f;
  }
</style>

12

2/8