body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #2d142c;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.ghost {
  position: relative;
  width: 120px;
  height: 170px;
  background-color: #ffffff;
  border-radius: 60px 60px 20px 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  animation: float 3s ease-in-out infinite;
}

.face {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.eye {
  width: 15px;
  height: 15px;
  background-color: #000000;
  border-radius: 50%;
  position: absolute;
  animation: blink 3s infinite; /* Slowed down blinking */
}

.eye.left {
  left: -20px;
}

.eye.right {
  right: -20px;
}

.blush {
  width: 10px;
  height: 10px;
  background-color: #ffb6c1;
  border-radius: 50%;
  position: absolute;
  top: 40px;
}

.blush.left {
  left: -40px;
}

.blush.right {
  right: -40px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes blink {
  0%,
  95% {
    height: 15px;
  }
  96%,
  100% {
    height: 0;
  }
}
