body {
      margin: 0;
      height: 100vh;
      overflow: hidden;
      background: teal;
}

#buddy {
  position: fixed;
  left: 120px;
  bottom: 120px;
  width: 64px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  cursor: pointer;
  transition: transform 0.2s linear;
   z-index: 999;
}

#bubble {
  position: fixed;
  bottom: 200px;
  left: 120px;
  background: #fbf9cc;
  border: 2px solid black;
  padding: 6px 10px;
  font-family: sans-serif;
  font-size: 14px;
  max-width: 200px;
  border-radius: 6px;
  position: fixed;
  z-index: 999;
}

/* inner colored triangle on top */
#bubble::before {
  content: "";
  position: absolute;
  left: 20px; /* same offset as ::after */
  bottom: -10px; /* slightly higher so it sits inside the black triangle */
  
  width: 0;
  height: 0;
  
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #fbf9cc;
  z-index: 1000; /* on top */
}


/* triangle tail with border */
#bubble::after {
  content: "";
  position: absolute;
  left: 20px; /* tail horizontal offset */
  bottom: -12px; /* move down a bit for the border */
  
  width: 0;
  height: 0;
  
  /* bigger black triangle for border */
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid black;
  z-index: 999; /* behind */
}

