html {
    background-color: #000;
}

body {
   background-color:#000;
   margin: 0;
   padding: 0;
   width: 100vw;
   height: 100vh;
   overflow: hidden;
   margin-left: 0;
}

#canvas {
   background-color:#fff;
   font-family:'Helvetica',sans-serif;
   margin: 0 auto;
   padding: 0;
   width: 1080px;
   height: 1920px;
   overflow: hidden;
   transform: scale(1);
   transform-origin: top center;
   transition: 1s all ease-in-out;
}

button {
   cursor: pointer;
}


#debug {
   width: 1080px;
   height: 20px;
   position: absolute;
   bottom: 0;
   left: 0;
   opacity: 1;
   z-index: 999;
   text-align: right;
   color: #fff;
   font-size: 12px;
}

#debug .btn {
    height: 16px;
    background: rgba(0,0,0,0.5);
    padding: 2px 1em 2px 1em;
    font-size: inherit;
    line-height: 14px;
    overflow: hidden;
    margin: 2px 20px 0 0;
    border-radius: 4px;
    font-weight: normal;
    text-transform: uppercase;
}
#debug .btn:hover {
    background: rgba(0,0,0,0.25);
}

.layer {
   position: fixed;
   top: 0;
   left: 0;
   width: 1080px;
   height: 1920px;
   transition: 0.4s all ease-in-out;
   pointer-events: none;
}

.invisible {
   display: none;
}


.layer.visible {
   opacity: 1;
   pointer-events: all;
}

.layer1 {
   opacity: 0;
}
.layer2 {
   opacity: 0;
}
.layer3 {
   opacity: 0;
}
.textarea {
   position: absolute;
    top: 930px;
    left: 158px;
    width: 764px;
    height: 333px;
   margin: 0;
   padding: 0;
   background-color: #4ba82d;
}
.textareaWrapper {
    position: relative;
    margin: 10px;
    width: auto;
    margin: 20px;
    overflow: hidden;
}

textarea {
    resize: none;
   font-family:inherit;
	font-size: 20px;
	color: #0e080a;
	border: none;
	padding: 1rem;
	width: 100%;
	height: 261px;
	float: left;
}
            
.submit {
    position: fixed;
    top: 1533px;
    left: 180px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.btn, .btn:link {
    background: #4ba82d;
    color: #fff;
    padding: 0.375em 0.75em;
    border-radius: 0.5em;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.4s all ease-in-out;
}

.btn:visited, .btn:hover {
    background: #4ba82d;
    color: #fff;
}

:link,:visited,:hover {
    text-decoration: none;
    color: inherit;   
}

:focus {
    outline: none;
}

           .keyboard {
                background-color: #0e080a;
                position: fixed;
                top: 1263px;
                left: 158px;
                width: 764px;
                height: 260px;
                border-radius: 10px;
                overflow: hidden;
            }

.softkeysWrapper {
    position: relative;
    width: auto;
    margin: 10px;
    overflow: hidden;
}
.softkeys {
    margin: 0;
}
.softkeys__btn {
    font-size: 20px;
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(#3c434d, #323a44);
    border-color: #f5f4f4;
    transition: 0.2s ease-in-out all;
    min-width: 20px;
    padding: 10px;
    margin: 0 5px 10px 5px;
    border: none;
    line-height: 20px;
}

.softkeys__btn:hover, .softkeys__btn:focus,.softkeys--alt .softkeys__btn[data-type="shift"] {
    color: #4ba82d;
    //background-color: #fff;
}

.softkeys__btn[data-type="capslock"] {
    opacity: 0;
    pointer-events: none;
    width: 50px;
}

.softkeys__btn[data-type="delete"] {
    width: 60px;
}
.softkeys__btn[data-type="shift"] {
    width: 60px;
}
