h1 {
  color: white;
  text-align: center;
  
}
h3 {
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  margin-bottom: 2px;
}
.keyboard {
  position: fixed;
  left: 0;
  bottom: 0;  
  width: 100%;
   
  padding: 5px 0;
  background: rgb(26, 26, 26);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  user-select: none;
  transition: bottom 0.4s;   
  touch-action: manipulation;
  z-index: 1000;
}
.keyboard--hidden {
  bottom: -100%;
}
.keyboard__keys {
  text-align: center;
}
.keyboard__key {
  height: 45px;
  width: 100%;
  max-width: 80px;
  margin: 3px;
  border-radius: 4px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  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: grey;
  -webkit-user-select: none;
  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: rgb(133, 216, 8);
}
.keyboard__key--dark {
  background: rgba(0, 0, 0, 0.25);
}
.keyboard__key--sari {
  background: #b59f3b;
}
.keyboard__key--yesil {
  background: #538d4e;
}
.keyboard__key--acikmavi {
  background: #4e8d8c;
}

/* Add a container for the main content */
.content-container {
  padding-bottom: 215px;
}
