/*General*/
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
*::before, *::after {
    box-sizing: border-box;
}

.container{
    margin:0 auto;
    padding:0 36px;
    max-width:1352px;
}
body, .keyboard {
    font-family: "Rubik", sans-serif;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap:16px;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #fff;
}
a{
    text-decoration: none;
    color:black;
}
button{
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
}
button.btn {
    font-weight: 600;
    color: #382b22;
    text-transform: uppercase;
    padding: 1.25em 2em;
    background: #fff0f0;
    border: 2px solid #b18597;
    border-radius: 0.75em;
    transition: transform 0.15s;
    transform-style: preserve-3d;
}
span.rus{
    position: absolute;
    font-size: 0.8rem;
    color: #8c7b72;
    top: 20%;
    right: 20%;
}
button.btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f9c4d2;
    border-radius: inherit;
    box-shadow: 0 0 0 2px #b18597, 0 0.625em 0 0 #ffe3e2;
    transform: translate3d(0, 0.75em, -1em);
    transition: transform 0.15s, box-shadow 0.15s;
}

button.btn.hover {
    background: #ffe9e9;
    transform: translate(0, 0.25em);
}
button.btn.hover::before {
    box-shadow: 0 0 0 2px #b18597, 0 0.5em 0 0 #ffe3e2;
    transform: translate3d(0, 0.5em, -1em);
}
button.btn.active {
    background: #ffe9e9;
    transform: translate(0em, 0.75em);
}
button.btn.active::before {
    box-shadow: 0 0 0 2px #b18597, 0 0 #ffe3e2;
    transform: translate3d(0, 0, -1em);
}

#input{
    font-family: "Rubik", sans-serif;
    font-size: 1.6rem;
    position: absolute;
    top:20vh;
    background: transparent;
    color: #382b22;
    border:2px solid #b18597;
    border-radius: 0.75em;
    height:48px;
    width:480px;
    padding:8px;
    z-index: 5;
}
.space{
    width:360px;
}
.title{
    position:absolute;
    top:8%;
    width:360px;
}


















