Back to battles

#173

Hockey Mask

<div></div>
<style>
  body {
    background: #a5b5b4;
    display: grid;
    place-content: center;
  }
  div {
    width: 150px;
    height: 180px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
  }

  div::after,
  div::before {
    content: '';
    background: #000000;
    position: absolute;
    translate: -50% -50%;
    border-radius: 50%;
  }
  div::after {
    width: 30px;
    height: 30px;
    top: 65px;
    left: 40px;
    box-shadow: 70px 0 #000000;
  }
  div::before {
    width: 10px;
    height: 10px;

    top: 25px;
    left: 60px;

    box-shadow:
      30px 0,
      15px 20px,
      0 80px,
      0 100px,
      0 120px,
      30px 80px,
      30px 100px,
      30px 120px;
  }
</style>

28

3/8