diff --git a/public/1-Cube.html b/public/1-Cube.html
index 6ff0257f006088f6c245ad53d6cbf5a869541c0e..d46a71d800f77c75c8c88d66250f0af15ff734f1 100644
--- a/public/1-Cube.html
+++ b/public/1-Cube.html
@@ -36,7 +36,7 @@ const materials = [
 
 // Create the cube and add it to the demo scene.
 const cube = new THREE.Mesh(new THREE.BoxBufferGeometry(0.5, 0.5, 0.5), materials);
-cube.position.set(0, 0, -5);
+cube.position.set(0, 0, -3);
 scene.add(cube);
 
 // Set up the WebGLRenderer, which handles rendering to the session's base layer.