


body { 
	background-color: #472303;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: "PT Mono";
    color: white;
}

.row-two{
	position: relative;
  right: -40px;
}

.row-four{
	position: relative;
  right: 50px;
}



.keyboard-wrapper {
    width: 1050px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#output {
    width: 100%;
    height: 150px;
    padding: 15px;
  font-size: 25px;
    border-radius: 8px;
    border: none;
    outline: none;
 background-color: #602908;
    color: #fff;
    resize: none;
    box-sizing: border-box;
	background-image: url(/images/qr/board.png);
  background-repeat: no-repeat;
  background-size: 123px;
  background-position: right 20px top 0px;
  background-blend-mode: difference;
}

.keyboard-container {
background: #884600;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.keyboard-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.key {
    position: relative;
   background: #5a2e07;
    color: white;
    border: none;
    min-width: 50px;
    height: 55px;
    border-radius: 6px;
    cursor: pointer;
font-size: 21px;
box-shadow: 1px 3px 2px #2a1204;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.05s;
}

.key:hover { background: #c25607; }

.key:active {
    box-shadow: 0 0 #222;
    transform: translateY(4px);
}

.key-main { margin-bottom: 5px; }

.key-secondary {
    position: absolute;
    bottom: 4px;
    right: 6px;
font-size: 0.92rem;
  color: #a8a8a8;
    pointer-events: none;
}

.key-active {
    background: #f39c12 !important;
    box-shadow: 0 2px #a3690b;
    transform: translateY(2px);
}

.key-wide { min-width: 95px; }
.key-space { width: 450px; }

/* Footer Links */
.keyboard-footer { text-align: center; margin-top: 10px; }

.all_apps {
    display: inline-block;
    width: 330px;
    margin-top: 1em;
    height: 40px;
    position: relative;
    line-height: 0.1em;
}

.all_apps a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.all_apps a:hover { opacity: 0.8; text-decoration: underline; }

.all_apps img {
    height: auto;
    width: 35px;
    vertical-align: middle;
    margin-right: 8px;
}