Back to battles

#68

Bell

<div></div>
<style>
  body {
    background: #191919;
    display: grid;
    place-items: center;
  }
  div {
    width: 120px;
    height: 120px;
    background: #e08027;
    border-radius: 60px 60px 10px 10px;
  }

  div::after {
    content: '';
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    top: 91px;
    height: 50px;
    width: 50px;
    background: #f2ad43;
    border-radius: 50%;
    z-index: -1;
  }
  div::before {
    content: '';
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    bottom: 40px;
    height: 50px;
    width: 50px;
    background: #824b20;
    border-radius: 50%;
    z-index: -1;
  }
</style>

12

2/8