Back to battles

#51

Wear a Mask

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

  div:nth-child(1) {
    width: 250px;
    height: 40px;
    border: 10px solid #fff1c1;
    border-radius: 50px;
    translate: 0 30px;
  }
  div:nth-child(2) {
    width: 150px;
    height: 100px;
    background: #fff1c1;
    border-radius: 0 0 50px 50px;
    translate: 0 -30px;
  }

  div:nth-child(2)::after {
    content: '';
    width: 40px;
    height: 10px;
    background: #fe5f55;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 10px;
    box-shadow: 0 20px#FE5F55;
  }
  div:nth-child(2)::before {
    content: '';
    width: 40px;
    height: 40px;
    background: #fe5f55;
    position: absolute;
    top: 40px;
    left: 90px;
    border-radius: 50%;
  }
</style>

10

6/6