* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #F9FBB2;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #7C6354;
}
.nav {
    height: 10vh;
    width: 100vw;
    background-color: wheat;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 2rem;
}
.beta {
    font-size: small;
}
a {
    color: inherit;
    text-decoration: none;
}
.select {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
}
.layouts {
    font-size: 1rem;
    border: none;
    border-radius: 0.8rem;
    padding: 0.3rem 0.5rem;

}
.layouts:focus {
    outline: none;
}
.keyboard { 
    padding: 0.6rem;
    /* width: 70%; */
    /* height: 60%; */
    border: 10px solid darkslategrey;
    background-color: #e3e9c2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 0.8rem;
    position: relative;
}
.row{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
}

.key {
    /* margin: 0.1rem; */
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pushed {
    background-color: gold;
}
.shift {
    font-size: 0.8rem;
}
.space-hr {
    width: 100%;
    height: 25px;
}
.dummy {
    border: none;
}

.arrows {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.arrows > .key, .arrows > .dummy {
    height: 25px;
}
.u05 {
    width: 25px;
    height: 50px;
}
.u075 {
    width: 37.5px;
    height: 50px;
}
.u1 {
    width: 50px;
    height: 50px;
}
.u1-tall {
    width: 50px;
    height: 100px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.u2 {
    width: 100px;
    height:  50px;
}
.u15{
    width: 75px;
    height:  50px;
}
.u125{
    width: 62.5px;
    height:  50px;
}
.u175{
    width: 87.5px;
    height:  50px;
}
.u225{
    width: 112.5px;
    height:  50px;
}
.u275{
    width: 137.5px;
    height:  50px;
}
.u3{
    width: 150px;
    height:  50px;
}
.u65{
    width: 325px;
    height:  50px;
}
.u625{
    width: 312.5px;
    height:  50px;
}


.input {
    height: 100px;
    width: 70%;
    background-color: rgba(0, 0, 0, 0.356);
    border-radius: 0.8rem;
    font-size: 4rem;
    padding: 0 2rem;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    direction: rtl;
}
