Back to battles

#12

Wiggly Moustache

<div></div>
<div></div>
<div></div>
<style>
  body {
    background: #f5d6b4;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  div {
    width: 60px;
    height: 30px;
    border: 20px solid #d86f45;
    border-radius: 100px 100px 0 0;
    border-bottom: 0;
    position: relative;
  }

  div:nth-child(1) {
    bottom: -25px;
    left: 20px;
    transform: rotate(180deg);
  }

  div:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 20px;
    height: 20px;
    background: #d86f45;
    border-radius: 50%;
  }
  div:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 20px;
    height: 20px;
    background: #d86f45;
    border-radius: 50%;
  }

  div:nth-child(2) {
    bottom: 24px;
    height: 32.5px;
  }

  div:nth-child(3) {
    transform: rotate(180deg);
    top: 25px;
    left: -20px;
  }
</style>

01

12/12