html{
    height:100%;
    min-height:100%;
}

body
{
    background: transparent url('../images/background.jpg') no-repeat center center fixed;
    background-size:cover;
    margin: 0px;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

canvas,img {
    -webkit-transform-origin: 0 0px;
    -ms-transform-origin: 0 0px;
    transform-origin: 0 0px;
    position: absolute;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
}

h1 {
    position: absolute;
    color: #000000;
    visibility: hidden;
}


#gameWrapper {
    position: absolute;
    visibility: visible;
    -webkit-transform-origin: 0 0px;
    transform-origin: 0 0px;
}
#gameCanvas {
    -moz-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px
}
#inputform {
    visibility: hidden;
}