html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

#cat {
  width: 300px;
  height: 270px;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
}
#cat #head {
  background-color: #1a1a1a;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 100px 100px 160px 160px/100px 100px 200px 200px;
}
#cat .eye {
  background-color: #ffffff;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 75px;
  border-radius: 50%;
}
#cat .eye .pupil {
  background-color: #000000;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 22.5px;
  left: 22.5px;
  border-radius: 50%;
  transition: top 200ms ease-out, left 200ms ease-out;
}
#cat #left-eye {
  left: 30px;
}
#cat #right-eye {
  right: 30px;
}
#cat .ear {
  width: 0;
  height: 0;
  border-bottom: solid 150px #1a1a1a;
  border-left: solid 60px transparent;
  border-right: solid 60px transparent;
  position: absolute;
  top: -90px;
}
#cat #left-ear {
  left: -55px;
  transform: rotate(-40deg);
}
#cat #right-ear {
  right: -55px;
  transform: rotate(40deg);
}
#cat .blush {
  background-color: #ff2152;
  width: 80px;
  height: 30px;
  position: absolute;
  top: 170px;
  border-radius: 50%;
}
#cat #left-blush {
  left: -5px;
}
#cat #right-blush {
  right: -5px;
}
#cat #nose {
  background-color: #040404;
  width: 60px;
  height: 30px;
  position: absolute;
  top: 175px;
  left: 120px;
  border-radius: 30% 30% 50% 50%;
}
#cat .w-mouth {
  background-color: #1a1a1a;
  width: 60px;
  height: 25px;
  border: solid 5px #040404;
  border-top: 0;
  box-sizing: border-box;
  position: absolute;
  top: 200px;
}
#cat #left-w-mouth {
  left: 92px;
  border-radius: 20% 0 50% 80%/30% 0 100% 100%;
}
#cat #right-w-mouth {
  right: 92px;
  border-radius: 0 20% 80% 50%/0 30% 100% 100%;
}
#cat #mouth {
  background-color: #ff2b2b;
  width: 70px;
  height: 50px;
  border: solid 5px #141414;
  border-top: none;
  box-sizing: border-box;
  position: absolute;
  top: 215px;
  left: 115px;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
}