:root {
    --test: #123456;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}
/*#region - Startpage */

/*#endregion*/


#log_window {
    display: block;
    width: 100%;
    max-width: 600px;
    height: 150px;
}
#start {
    padding: 20px;
}

.page_startpage .key_container {
    width: 100%;
    max-width: 600px;
    height: 100px;
    display: flex;
}
.page_startpage .key_container.small {
    height: 50px;
}

.page_startpage .key_container .key {
    flex: 1;
    background-color: #eee;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.page_startpage .key_container .key span {
    display: flex;
    align-self: center;
}

.page_startpage .key_container .key.active {
    background-color: #CDD;
}

.canvas_keyboard {
    display: block;
    width: 100%;
    max-width: 600px;
    height: 150px;

    /*border: 1px solid black;
    background-color: blanchedalmond;*/
}

.div_panel {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 240px;
    image-rendering: pixelated;
}

.canvas_panel {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    image-rendering: pixelated;
}

.canvas_control_container {
    position: absolute;
    z-index: 10;
}

.canvas_control {
    display: block;
    /*position: absolute;
    z-index: 10;*/
    touch-action: none;
    image-rendering: pixelated;
}



/*
.keys
{
	margin: -1px 0px 0px -1px;
	padding: 30px;
	text-align: center;
	float: left;
	border: solid 1px #000;
	cursor: pointer;
	background-color: #EEE;
	
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.key-pressed
{
	background-color: #CDD;
}
.small
{
	padding: 16px 30px;
}
*/
