Back to battles

#47

Corona Virus

<div></div>
<p></p>
<p></p>
<p></p>
<style>
  body {
    background: #1a4341;
    display: grid;
    place-items: center;
  }
  div {
    width: 100px;
    height: 100px;
    background: #f3ac3c;
    border-radius: 50%;
  }

  p {
    position: absolute;
    z-index: -1;
    height: 180px;
    width: 10px;
    background: red;
    border-radius: 10px;
    background: #f3ac3c;
  }

  p:nth-of-type(1) {
    translate: 0px -10px;
  }
  p:nth-of-type(2) {
    translate: 8px -5px;
    rotate: 60deg;
  }
  p:nth-of-type(3) {
    rotate: 120deg;
    translate: 8px 5px;
  }

  div::after {
    content: '';
    width: 30px;
    height: 30px;
    background: #998235;
    position: absolute;
    top: 120px;
    left: 170px;
    border-radius: 50%;

    box-shadow:
      15px 40px 0 -5px #998235,
      40px -10px 0 -10px #998235;
  }
</style>

10

6/6