@charset "UTF-8";
#speakButton {
  display: inline-block;
  font-size: 14px;
  padding: 17px 27px 17px 50px;
  background: #ffe400;
  position: relative;
  border: none;
  outline: none;
  border-radius: 10px;
  color: #000;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
#speakButton:before {
  content: "🔊";
  position: absolute;
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 18px;
  left: 15px;
  top: calc(50% - 9px);
}
#speakButton.speaking:before {
  content: "⏸";
}
#speakButton.speaking.paused:before {
  content: "🔊";
}
