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

#buddy {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 128px;
  height: 128px;
  background: url("sprites/idle.png") no-repeat center / contain;
  cursor: pointer;
}

#bubble {
  position: fixed;
  background: #fbf9cc;
  border: 2px solid black;
  border-radius: 6px;
  padding: 6px 8px;
  font-family: sans-serif;
  font-size: 14px;
  max-width: 220px;
}

#bubble-text {
  display: block;
  margin-bottom: 4px;
}

#bubble-input {
  width: 100%;
  font-size: 14px;
  border: 1px solid black;
  padding: 4px;
  box-sizing: border-box;
}