diff --git a/index.html b/index.html
index 4ed06fb..a28465c 100644
--- a/index.html
+++ b/index.html
@@ -14,7 +14,7 @@
#leader ol { margin:.2rem 0 0 1rem; padding:0; }
-
+
diff --git a/sketch.properties b/sketch.properties
index 50cdfe0..a653b7b 100644
--- a/sketch.properties
+++ b/sketch.properties
@@ -1,2 +1,3 @@
+main=sketch_250819b_CMYKGame.js
mode=p5.js
mode.id=processing.mode.p5js.p5jsMode
diff --git a/sketch_250819b_CMYKGame.js b/sketch_250819b_CMYKGame.js
index 49b8cc0..c176171 100644
--- a/sketch_250819b_CMYKGame.js
+++ b/sketch_250819b_CMYKGame.js
@@ -128,17 +128,18 @@ function drawTarget(){
function drawOptions(){
const gridRows = 2;
const gridCols = 3;
- const gap = 16;
+ const gapX = 16;
+ const gapY = 48;
const areaTop = height*0.6;
- const cellW = (width - gap*(gridCols+1)) / gridCols;
- const cellH = (height*0.36 - gap*(gridRows+1)) / gridRows;
+ const cellW = (width - gapX*(gridCols+1)) / gridCols;
+ const cellH = (height*0.36 - gapY*(gridRows+1)) / gridRows;
optionBoxes = [];
let idx = 0;
for(let r=0; r