body {
  background-color: #1a1a1a;
  margin: 0;
  display: flex;
  justify-content: center;
  font-family: "Courier New", Courier, monospace;
  overflow-x: hidden;
}

.face-container {
  top: 100px;
  width: 200px;
  height: 250px;
  background: #ffdbac;
  border-radius: 50% 50% 40% 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid #333;
  cursor: pointer;
  z-index: 10;
  transition: background 0.5s ease,
    border-radius 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    height 0.5s cubic-bezier(0.68, 0, 0.27, 1.55), width 0.5s ease;
  user-select: none;
}

.face-container::before {
  content: "";
  position: relative;
  top: 60px;
  left: -32px;
  width: 35px;
  height: 45px;
  background: #333;
  border-radius: 20px;
  box-shadow: 65px 0 0 #333;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}


.face-container:hover {
  background: #111;
  height: 475px;
  border-radius: 50% 50% 40px 40px;
}


.label {
  position: absolute;
  order: 1;
  background: white;
  border: 2px solid #000;
  font-weight: bold;
  font-size: 12px;
  top: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.face-container:hover .label {
  background: rgba(255, 255, 255, 0.5);
  color: #FFF;
  border-color: #777;
}

.mouth {
  position: absolute;
  order: 4;
  width: 60px;
  height: 10px;
  background: #333;
  border-radius: 5px;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  top: 170px;
}

.face-container:hover .mouth {
  height: 250px;
  width: 60px;
  border-radius: 25px;
  box-shadow: inset 0 0 35px #000;
  background: #111;
}

.face-container:hover::before {
  height: 245px;
  
}

.drip {
  position: fixed;
  width: 3px;
  border-radius: 10px;
  z-index: 10;
  pointer-events: none;
  box-shadow: inset -2px 0 5px rgba(0, 0, 0, 0.2);
}

@keyframes hyper-rainbow {
  0% {
    background-image: conic-gradient(from 0deg, red, yellow, lime, cyan, blue, magenta, red);
    background-position: 0% 0%;
    filter: hue-rotate(0deg) brightness(1) saturate(1);
  }
  25% {
    background-position: 100% 0%;
    filter: hue-rotate(90deg) brightness(1.5) saturate(2);
  }
  50% {
    background-position: 100% 100%;
    filter: hue-rotate(180deg) brightness(2) saturate(4);
  }
  75% {
    background-position: 0% 100%;
    filter: hue-rotate(270deg) brightness(1.5) saturate(2);
  }
  100% {
    background-image: conic-gradient(from 360deg, red, yellow, lime, cyan, blue, magenta, red);
    background-position: 0% 0%;
    filter: hue-rotate(360deg) brightness(1) saturate(1);
  }
}