Back to battles

#10

Cloaked Spirits

<div class="left"></div>
<div class="middle"></div>
<div class="right"></div>

<style>
  * {
    margin: 0;
  }
  body {
    background: #62306d;
    display: flex;
    align-items: end;
    justify-content: center;
  }

  div {
    background: #f7ec7d;
    width: 100px;
    position: relative;
  }

  .left {
    height: 100px;
  }

  .left::after,
  .right::after,
  .middle::after {
    content: '';
    position: absolute;
    height: 60px;
    width: 60px;
    left: 50%;
    top: 0;
    translate: -50% -50%;
    border-radius: 50%;
    background: #e38f66;
    box-shadow: 0 0 0 20px #aa445f;
  }

  .middle {
    height: 200px;
  }

  .right {
    height: 100px;
  }

  .middle::after {
    background: #aa445f;
    box-shadow: 0 0 0 20px #e38f66;
  }
</style>

01

12/12