body {
  font-size: 19px;
}

body h1 {
  color: #079992;
}

body strong {
  color: #079992;
}

.keyboard {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 5px 0;
  background-color: #d9d9d9;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  user-select: none;
  transition: bottom 0.4s;
 
}

.simple-keyboard {
  left: 0;
  bottom: 0;
  position: fixed;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px 0;
  padding-bottom: 50px;
}

.keyboard--hidden {
  bottom: -100%;
}

.hg-button {
  text-align: center;
}

.hg-button  {
  height: 80px;
  width: 150px;
  max-width: 150px;
  margin: 5px;
  border-radius: 4px;
  border: none;
  background: rgba(255, 255, 255, 1);
  color: #000;
  font-size: 1.05rem;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.keyboard__key:active {
  background: rgba(255, 255, 255, 0.12);
}

.keyboard__key--wide {
  /*width: 12%;*/
}

.keyboard__key--extra-wide {
  width: 36%;
  max-width: 500px;
}

.keyboard__key--activatable::after {
  content: "";
  top: 10px;
  right: 10px;
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.keyboard__key--active::after {
  background: #08ff00;
}


.keyboard__key--dark {
  background: rgba(0, 0, 0, 0.25);
}
.hg-theme-default .hg-button.hg-standardBtn, .hg-theme-default .hg-button {
  width: 150px;
  height: 60px;
}
