/* Tap Tap Color - Mobile-first styles */

:root {
    --color-background: #1A1A2E;
    --color-red: #E74C3C;
    --color-green: #2ECC71;
    --color-blue: #3498DB;
    --color-yellow: #F1C40F;
    --color-purple: #9B59B6;
    --color-text: #FFFFFF;
    --color-text-dim: #888888;
    --color-success: #2ECC71;
    --color-error: #E74C3C;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-background);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
}

#game {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    touch-action: none;
}
