@font-face {
    font-family: 'Noto Sans Pahawh Hmong';
    src: url('../font/NotoSansPahawhHmong-Regular.ttf') format('woff');
    font-weight: normal;
    font-style: normal;

}

html {
    font-family: 'Noto Sans Pahawh Hmong' !important;
    height:100%
}

body {
    font-family: 'Noto Sans Pahawh Hmong' !important;
    background-color:#fff;
    height:100%
    
}

/* keyboard */
    .keyboard {
        position: fixed;
        left: 0;  
        bottom: 0;
        width: 100%;
        height: 72%;
        padding: 0px 20px 30px 20px;
        background: #fff;
        user-select: none;
        transition: bottom 0.4s;
    }

    .keyboard-mobile {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 30px 20px 30px 20px;
        background: #fff;
        user-select: none;
        transition: bottom 0.4s;
    }

    .keyboard--hidden {
        bottom: 0%; /* -100*/
    }

    .keyboard__keys {
        text-align: center;
    }

    .keyboard__key {
        height: 45px;
        width: 26px;
        margin: 3px;
        border-radius: 4px;
        border: none;
        background: rgba(0, 75, 180, 0.1);
        color: #000;
        font-size: 1.5rem;
        outline: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        vertical-align: top;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
        position: relative;
    }

    .keyboard__key:active {
        background: rgba(255, 255, 255, 0.12);
    }

    .keyboard__key--wide {
        width: 12%;
    }

    .keyboard__key--extra-wide {
        width: 58px;
    }

    .keyboard__key--extra-wider {
        width: 186px;
    }

    .keyboard__key--activatable::after {
        content: '';
        top: 10px;
        right: 10px;
        position: absolute;
        width: 8px;
        height: 8px;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
    }

    .keyboard__key--active::after {
        background: #08ff00;
    }

    .keyboard__key--dark {
        background-color: #DF4040;
        color: #fff;
    }

/* canvas */
    .canvas-writer {
        overflow-y: auto;
        height: 200px;
        border: 0px;
    }
    

/* Links */
    p a:link {
        text-decoration: underline;
    }

/* Padding */

    .padding-lg {
        padding: 34px 44px;
    }

    .padding-sm {
        padding: 18px 20px;
    }


/* Border */

    .border-bottom-1 {
        border-bottom: 1px solid;
    }

    .border-grey {
        border-color: #cccccc !important;
    }

/* Font */

    .normal-1 {
        font-size: 1rem;
    }

    .normal-15 {
        font-size: 1.2rem;
    }

    .normal-2x {
        font-size: 1.4rem;
        line-height: 1.5rem;
    }

    .normal-4x {
        font-size: 4rem;
    }

/* Color */

    .bg-light-grey {
        background-color: #F8F8F8;
    }
