Back to battles

#116

Headphones

<div></div>
<style>
  body {
    background: #293d7e;
    display: grid;
    place-content: center;
  }
  div {
    width: 130px;
    height: 150px;
    border: 20px solid #6e91ca;
    border-radius: 100px 100px 0 0;
    border-bottom: 0;
    margin-bottom: 40px;
  }

  div::after,
  div::before {
    position: absolute;
    top: 165px;
    left: 115px;
    content: '';
    width: 60px;
    height: 80px;
    background: #6e91ca;
  }
  div::after {
    left: 115px;
    border-radius: 0 020px 30px 30px;
  }
  div::before {
    left: 225px;
    border-radius: 20px 0 30px 30px;
  }
</style>

19

5/8