@charset "utf-8";
input {
    border: 2px solid #5E6C77;
    font-size: 1.5em;
    padding: .25em .5em .3125em;
    color: #5E6C77;
    border-radius: .25em;
    background: transparent;
    -webkit-transition: all .100s;
    transition: all .100s;
}

input:focus {
    outline: none;
    color: #A2ACB3;
    border-color: #A2ACB3;
}

input.keyup {
    color: white;
    border-color: white;
    text-shadow: 0 0 .125em white;
    box-shadow: 0 0 .25em white, inset 0 0 .25em white;
}

body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

canvas {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
}

input {
    font-family: "Arial Rounded MT Bold", "Helvetica Rounded", Arial, sans-serif;
}

::-webkit-input-placeholder {
    color: #5E6C77;
    text-shadow: 0 0 .125em transparent;
    -webkit-transition: all .25s;
    transition: all .25s;
}

input:focus::-webkit-input-placeholder {
    opacity: .5;
}

::-moz-placeholder {
    color: #5E6C77;
    text-shadow: 0 0 .125em transparent;
    -webkit-transition: all .25s;
    transition: all .25s;
}

input:focus::-moz-placeholder {
    opacity: .5;
}

:-ms-input-placeholder {
    color: #5E6C77;
    text-shadow: 0 0 .125em transparent;
    -webkit-transition: all .25s;
    transition: all .25s;
}

input:focus:-ms-input-placeholder {
    opacity: .5;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    /*height: 100%;*/
    /*overflow: hidden;*/
}

html {
    background: #282E33;
}

textarea {
    width: 100%;
    background-color: #373737;
    height: 300px;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    overflow: auto;
    color: green;
    font-size: 16px;
}

footer{
    width: 100%;
    height: 30px;
    line-height: 30px;
    display: block;
    background-color: #26455f;
    position: fixed;
    bottom: 0px;
    left: 0px;
}