Back to battles

#158

Clubs

<div></div>
<div></div>
<div></div>
<div></div>
<style>
  body {
    background: #4f77ff;
    display: grid;
    place-content: center;
    place-items: center;
  }

  div {
    width: 100px;
    height: 100px;
    background: #1038bf;
    border-radius: 50%;
    position: absolute;
  }

  div:nth-child(2) {
    translate: 45px 20px;
    box-shadow: 10px 40px #4f77ff;
  }
  div:nth-child(3) {
    translate: -45px 20px;
    box-shadow: -10px 40px #4f77ff;
  }
  div:nth-child(4) {
    translate: 0 -50px;
  }

  div:nth-child(1)::after {
    content: '';
    width: 50px;
    height: 50px;
    background: #1038bf;
    position: absolute;
    top: 125px;
    left: 50%;
    translate: -50% -50%;
  }
</style>

25

4/8