body {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1a1a1a;
}
.head {
  width: 300px;
  height: 200px;
  border-radius: 250px;
  margin: 8em auto;
  border: 5px solid #b0b0b0;
  position: relative;
  animation: float ease-in-out 3s infinite;
}
.face {
  width: 300px;
  height: 200px;
  position: relative;
  border-radius: 250px;
  margin: 0;
  top: 0;
  left: 0;
  background: #050505;
}
.table {
  width: 500px;
  height: 500px;
  position: absolute;
  border-top: 5px solid #282828;
  background: #1a1a1a;
  margin: 20em auto;
  top: 10px;
}
.ear {
  height: 128px;
  width: 128px;
  position: absolute;
  top: -20px;
  background: #282828;
  border: 5px solid #b0b0b0;
}
.ear.left:after {
  content: "";
  height: 128px;
  width: 128px;
  background: #c6a2a2;
  border-radius: 20% 50% 20% 50%;
  position: absolute;
  box-shadow: inset 0 0 0 10px #000000;
  border: none;
}
.ear.right:after {
  content: "";
  height: 128px;
  width: 128px;
  background: #c6a2a2;
  border-radius: 50% 20% 50% 50%;
  position: absolute;
  box-shadow: inset 0 0 0 10px #000000;
  border: none;
}
.ear.left {
  transform: rotate(8deg);
  left: -4px;
  border-radius: 20% 50% 20% 50%;
}
.ear.right {
  transform: rotate(352deg);
  right: -4px;
  border-radius: 50% 20% 50% 50%;
}
.eye {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 82px;
  background: #4a6b3b;
  border-radius: 50%;
}
.eye.right {
  right: 24%;
}

.eye.left {
  left: 24%;
}
.eye:after {
  height: 5px;
  width: 5px;
  position: absolute;
  top: 5px;
  right: 1px;
  border-radius: 100%;
  box-shadow: 0 4px 8px #d6d97c inset;
  content: "";
  background: #e2e7a1;
}

.hair {
  position: absolute;
  top: 107px;
}

.hair div {
  height: 5px;
  width: 100px;
  margin-top: 15px;
  background: #b0b0b0;
}

.hair.left {
  left: -60px;
  transform: rotate(347deg);
}

.hair.right {
  right: -60px;
  transform: rotate(17deg);
}

.nose {
  height: 20px;
  width: 30px;
  position: absolute;
  top: 60%;
  left: 44%;
  border-radius: 39% 39% 88% 88%;
  background: #4d3c3c;
}

.nose:after,
.nose:before {
  content: "";
  height: 35px;
  top: 15%;
  width: 34px;
  background: transform;
  position: absolute;
  border-bottom: 5px solid #4d3c3c;
  border-radius: 50%;
}

.nose:after {
  left: -20px;
  border-right: 5px solid #4d3c3c;
}
.nose:before {
  left: 11px;
  border-left: 5px solid #4d3c3c;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(20em);
  }
  100% {
    transform: translateY(0);
  }
}
