diff --git a/public/index.html b/public/index.html
index 3f5df7660b52149f681765393831950120bcd422..c3759eb6001bbf5e639da75d5781392732dc5a35 100644
--- a/public/index.html
+++ b/public/index.html
@@ -21,8 +21,6 @@ async function activateXR() {
   document.body.appendChild(canvas);
   const gl = canvas.getContext("webgl", {xrCompatible: true});
 
-  // To be continued in upcoming steps.
-
   const scene = new THREE.Scene();
 
 // The cube will have a different color on each side.
@@ -36,8 +34,8 @@ const materials = [
 ];
 
 // Create the cube and add it to the demo scene.
-const cube = new THREE.Mesh(new THREE.BoxBufferGeometry(0.2, 0.2, 0.2), materials);
-cube.position.set(1, 1, 1);
+const cube = new THREE.Mesh(new THREE.BoxBufferGeometry(0.5, 0.5, 0.5), materials);
+cube.position.set(0, 0, -1);
 scene.add(cube);
 
 // Set up the WebGLRenderer, which handles rendering to the session's base layer.
@@ -65,7 +63,6 @@ session.updateRenderState({
 // near the viewer's position at the time the session was created.
 const referenceSpace = await session.requestReferenceSpace('local');
 
-
 // Create a render loop that allows us to draw on the AR view.
 const onXRFrame = (time, frame) => {
   // Queue up the next draw request.
@@ -95,7 +92,6 @@ const onXRFrame = (time, frame) => {
 }
 session.requestAnimationFrame(onXRFrame);
 
-
 }
 </script>
 </body>