/* --- Palette & base --- */
:root {
    --bg-bone: #F1F1EC;
    --ink-black: #111111;
    --acid-green: #CCFF00;
    --hot-pink: #FF3060;
    --tech-blue: #0050FF;
    --paper-color: #E8E8E4;
    --dot-size: 14px;
    --font-tech: 'IBM Plex Mono', 'Courier New', monospace;
    --font-loud: var(--font-tech);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

html {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

body {
    background-color: var(--ink-black);
    color: var(--ink-black);
    font-family: var(--font-tech);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    touch-action: none;
}
