body {
  overflow: hidden;
  background: aquamarine;
}

#avatar,
#arrows {
  display: none;
}

.emoji {
  font-size: 50px;
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message {
  display: none;
  z-index: 1;
}

#arrows {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  gap: 4px;
}

.arrow {
  border: solid 1px black;
  width: 26px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
  border-radius: 3px;
  font-size: 12px;
}

#feedback {
  position: fixed;
  top: 40px;
  right: 45px;
  border: solid 1px black;
  padding: 10px 25px;
  font-size: 20px;
}
