
  textarea {
    display: block;
    margin: 1em auto;
    padding: 0.4em;
    width: 90%;
    height: 30%;
    resize: none;
    font-size: 1.2em;
    font-family: system-ui, monospace;
    border-radius: 5px;
  }
  
  .keyboard-keys {
    text-align: center;
  }
  .keyboard-hidden {
    bottom: -100%;
    display: none;
    }
  .keyboard-key {
    height: 45px;
    width: 6%;
    max-width: 90px;
    margin: 3px;
    border-radius: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #3a3a3a;
    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-wide {
    width: 12%;
  }
  
  .keyboard-extrawide {
    width: 36%;
    max-width: 500px;
  }
  
  .keyboard-active::after {
    content: "";
    top: 10px;
    right: 10px;
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
  }
  
  .keyboard-check::after {
    background: #08ff00;
  }
  
  .keyboard-dark {
    background: rgba(0, 0, 0, 0.25);
  }
  

.keyboard-close{
  position: absolute;
  top: 25px;
  right: 25px;
}