body {
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  position: relative;
}

.head {
  position: relative;
  width: 400px;
  transition: transform 0.1s linear;
}

.base {
  width: 100%;
  border-radius: 12px;
}

.eye {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #3c2601;
  border-radius: 50%;
  top: 145px; /* adjust this value */
}

.left-eye {
  left: 165px; /* adjust based on your image */
  top: 77px;
}

.right-eye {
  left: 200px; /* adjust based on your image */
  top: 77px;
}

.fly {
  position: absolute;
  font-size: 24px;
  pointer-events: none;
  transition: transform 0.05s linear;
}

  .icon-hover {
    transition: transform 0.2s ease;
  }
  .icon-hover:hover {
    transform: scale(1.25);
  }