Back to battles

#57

Pillars

<div></div>
<p></p>
<style>
  body {
    display: grid;
    place-content: center;
    background: #191919;
  }
  div {
    width: 110px;
    height: 110px;
    background: #4f77ff;
    position: relative;
  }

  p {
    width: 30px;
    height: 30px;
    position: absolute;
    background: #4f77ff;
    color: #4f77ff;
    left: 125px;
    top: 59px;
    border-radius: 50%;
    z-index: 1;
    box-shadow:
      120px 0,
      120px 120px,
      0 120px;
  }

  div::after {
    content: '';
    width: 45px;
    height: 45px;
    background: #f9e492;
    position: absolute;
    top: -20px;
    left: -20px;
    border-radius: 50%;
    color: #f9e492;
    box-shadow:
      105px 0,
      0 105px,
      105px 105px;
    z-index: 1;
  }
  div::before {
    content: '';
    width: 60px;
    height: 60px;
    background: #191919;
    position: absolute;
    top: -20px;
    left: -20px;
    border-radius: 50%;
    color: #191919;
    box-shadow:
      90px 0,
      0 90px,
      90px 90px;
  }
</style>

11

6/8