Back to battles

#54

Black Lives Matter

<div class="bars">
  <span style="height:45px"></span>
  <span style="height:55px"></span>
  <span style="height:45px"></span>
  <span style="height:35px"></span>
</div>
<div class="base"></div>
<div class="stand"></div>

<style>
  body {
    background: #f9e492;
    display: grid;
    place-items: center;
    place-content: center;
    margin: 0;
  }
  .base,
  .stand,
  span {
    background: #191919;
  }
  .bars {
    width: 100px;
    height: 60px;
    display: flex;
    align-items: end;
    gap: 5px;
  }
  .base {
    width: 100px;
    height: 40px;
    border-radius: 0 0 10px 10px;
  }
  .stand {
    width: 50px;
    height: 45px;
    border-radius: 0 0 10px 10px;
  }
  span {
    width: 20px;
    border-radius: 10px;
    translate: 5px -5px;
  }
  .bars::after {
    content: '';
    width: 20px;
    height: 65px;
    background: #191919;
    position: absolute;
    top: 105px;
    left: 152px;
    rotate: 60deg;
    border: 5px solid #f9e492;
    border-radius: 20px;
  }
</style>

11

6/8