Back to battles

#223

UFO

<div></div>
<div></div>
<style>
  body {
    background: #2f434e;
    display: grid;
    place-items: center;
    align-content: center;
  }

  div:nth-child(1) {
    width: 160px;
    height: 80px;
    background: #e25c57;
    border-radius: 100px 100px 0 0;
  }

  div:nth-child(2) {
    width: 260px;
    height: 46px;
    background: #f3ac3c;
    clip-path: polygon(50px 0%, 210px 0%, 100% 100%, 0% 100%);
  }

  div:nth-child(1)::after {
    position: absolute;
    top: 183px;
    left: 110px;
    content: '';
    background: #e25c57;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow:
      80px 0 #e25c57,
      160px 0 #e25c57;
  }
</style>

34

4/8