Back to battles

#41

Fox Head

<div></div>
<div></div>
<style>
  body {
    background: #293462;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  div {
    width: 50px;
    height: 140px;
    background: #fe5f55;
  }

  div:nth-child(1) {
    border-radius: 0 40px 0 0;
  }
  div:nth-child(2) {
    border-radius: 40px 0 0 0;
  }

  div:nth-child(1)::after {
    border-radius: 40px;
    content: '';
    left: 120px;
    top: 180px;
    position: absolute;
    background: #293462;
    height: 80px;
    width: 80px;
    box-shadow: 80px 0 #293462;
  }

  div:nth-child(2)::after {
    border-radius: 50%;
    content: '';
    left: 165px;
    top: 140px;
    position: absolute;
    background: #293462;
    height: 30px;
    width: 30px;
    box-shadow: 40px 0 #293462;
  }
</style>

07

9/9