* {

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    /*
     user-select is disabled so images dont get selected during drag.
     */
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    
    pointer-events: none;
    /*-webkit-overflow-scrolling: touch;*/
    /*overflow: hidden;*/
}

a {
    pointer-events: all;
}

a:link {
    color: #76c2bb;
    text-decoration: underline;
}
a:visited {
    color: #76c2bb;
}
a:hover {
    color: #76c2bb;
    text-decoration: none;
}
a:active {
    color: #76c2bb;
}

html, body {
    margin: 0;
    padding: 0;
   
    background-color: #cbcac4;
    overflow-x: hidden;
    overflow-y: hidden;
    font-size: 12px;
    color: #ffffff;
    font-weight: 900;
    font-family: 'Roboto', "arial", sans-serif;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
 
    -webkit-font-smoothing: antialiased;

   /* -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;*/
}

img {
    pointer-events: none;

}

