﻿/* style.css */


@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    min-height: 100vh;
}

body {
    height: 100%;
    background-color: #333;
    background-image: url('/img/bg.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    font-family: "Open Sans", sans-serif;
    font-size: 15pt;
    color: white;
}

bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0026ff;
    mix-blend-mode: overlay;
}

cover {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000080;
    backdrop-filter: blur(5px);
}

div.center {
    text-align: center;
}

textbox {
    display: inline-block;
    background-color: #eaeaea;
    border: 1px solid #777;
    box-shadow: 0 1px 2px #00000080;
    min-height: 1em;
    padding: 5px;
    color: #333;
    border-radius: 5px;
}

div.keyboard {
    background-color: #222222;
    background: linear-gradient(#111,#222,#111,#080808);
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 20px 0;
    border-top: 2px solid #ffffff40;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.keyrow {
    display: block;
    text-align: center;
}

div.key {
    background-color: #22222240;
    display: inline-block;
    width: 66px;
    height: 66px;
    margin: 2px;
    font-size: 200%;
    border-top: 2px solid #ffffff40;
    border-left: 2px solid #ffffff10;
    border-right: 2px solid #ffffff10;
    border-bottom: 2px solid #000000;
    border-radius: 10px;
    text-shadow: 0 2px 3px black;
}

    div.key.down {
        color: black;
        background-color: white;
        border: 2px solid black;
    }

    div.key.big {
        width: 500px;
    }