body {
    margin: 0;
    padding: 0;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden; /* Stops elastic scrolling on iOS */
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    
    /* Disable text selection on phone */
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

#game-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

canvas {
    display: block;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    
    /* RESPONSIVE SCALING */
    width: 100% !important;
    height: auto !important;
    max-width: 800px;
    
    /* STOP IPHONE SCROLLING ON CANVAS */
    touch-action: none;
}