body {
  padding: 0;
  margin: 0;
  background: #eeeeee;
}

.container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.face-ear {
  height: 200px;
  width: 120px;
  background: #c7b198;
  border-radius: 50px 50px 60px 60px;
}

.face-ear:after, .face-ear:before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border-bottom: 60px solid #c7b198;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
}

.face-ear:before {
  left: -50px;
  top: 17px;
  transform: rotate(20deg);
}

.face-ear:after {
  right: -48px;
  top: 17px;
  transform: rotate(-20deg);
}

.nose-area {
  position: absolute;
  bottom: 0;
  height: 140px;
  width: 120px;
  background: #84a9ac;
  border-radius: 60px;
}

.nose-area:before {
  position: absolute;
  content: "";
  height: 62px;
  width: 18px;
  background: #84a9ac;
  left: 50%;
  transform: translate(-50%);
  top: -60px;
}

.nose {
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: black;
  left: 50%;
  transform: translate(-50%);
  bottom: 80px;
  box-shadow: 34px -48px 0 -10px black, -33px -48px 0 -10px black;
}

.nose:before {
  content: "";
  position: absolute;
  height: 24px;
  width: 4px;
  background: black;
  left: 50%;
  transform: translate(-50%);
  bottom: -24px;
}

.nose:after {
  content: "";
  position: absolute;
  height: 4px;
  width: 30px;
  background: black;
  left: 50%;
  transform: translate(-50%);
  bottom: -28px;
}

.specs {
  position: absolute;
  height: 60px;
  width: 90px;
  background: transparent;
  border: 4px solid black;
  border-radius: 10px 10px 50px 50px;
  bottom: 100px;
  left: -50px;
}

.specs:before {
  content: "";
  position: absolute;
  height: 60px;
  width: 90px;
  background: transparent;
  border: 4px solid black;
  border-radius: 10px 10px 50px 50px;
  top: -4px;
  left: 118px;
}

.specs:after {
  content: "";
  position: absolute;
  height: 14px;
  width: 30px;
  background: black;
  left: 90px;
  top: 4px;
}

.body {
  position: absolute;
  height: 260px;
  width: 220px;
  border-radius: 50%;
  background: #c7b198;
  box-sizing: border-box;
  bottom: -180px;
  z-index: -100;
  left: -50px;
}

.leg-l, .leg-r {
  position: absolute;
  height: 140px;
  width: 40px;
  border: 2px solid black;
  background: #c7b198;
  border-top: 4px solid #c7b198;
}

.leg-l {
  left: 50px;
  top: 120px;
}

.leg-r {
  right: 50px;
  top: 120px;
}

.leg-l:before, .leg-r:before {
  content: "";
  position: absolute;
  height: 40px;
  width: 56px;
  border-radius: 50%;
  background: #84a9ac;
  bottom: -30px;
  left: -8px;
}

.leg:before {
  content: "";
  position: absolute;
  height: 80px;
  width: 140px;
  background: #c7b198;
  border-radius: 50%;
  z-index: -300;
  transform: rotate(-30deg);
  left: -70px;
  bottom: -160px;
}

.leg:after {
  content: "";
  position: absolute;
  height: 80px;
  width: 140px;
  background: #c7b198;
  border-radius: 50%;
  z-index: -300;
  transform: rotate(30deg);
  right: -70px;
  bottom: -160px;
}

.tail {
  height: 150px;
  width: 200px;
  position: absolute;
  border-radius: 50%;
  z-index: -200;
  bottom: -100px;
  left: 30px;
  box-shadow: inset -12px 8px 0 0 #c7b198;
  transform: rotate(60deg);
}