html,body{position:fixed}

html {
    height: 100%;
    overflow: hidden; /*  Disable scrollbars */
    display: block; /* No floating content on sides */
    padding: 0;
    margin: 0;
}

canvas {
    margin: auto;
    padding: 0;
    display: block;
    outline: none;
    user-select: none;
    /* for mobile */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
}

body {
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    user-select: none;
    /* for mobile */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
/* vx.editbox의 input dom class name이 'AppTextBox'이다. */
.AppTextBox {
    text-transform: none;
    outline: none;
    border: 0px;
    font-family: gulim;
    font-size: 10pt;
}

.AppTextBox:focus {
    outline: none;
    border: 0px;
    font-family: gulim;
    font-size: 10pt;
    padding-left: 4px;
}
