/* Reset et base */
* {
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
    background: #272727;
    color: #5a5050;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    touch-action: manipulation;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Polices personnalisées */
@font-face {
    font-family: 'Roboto-Thin';
    src: url('../assets/fonts/Roboto/Roboto-Thin.ttf') format('truetype');
}


/* #view { */
/* position: fixed; */
/* fige au viewport */
/* inset: 0; */
/* top/right/bottom/left = 0 */
/* font-size: 25px; */
/* overflow: hidden; */
/* overscroll-behavior: none; */
/* bloque le scroll chaining */
/* -webkit-overflow-scrolling: auto */
/* overscrollBehavior: 'none';  */
/* } */

/* Composants */
/* .matrix {
    background-color: blue;
    border-radius: 9px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 3px;
} */