diff --git a/index.html b/index.html
index da17d11..733d052 100644
--- a/index.html
+++ b/index.html
@@ -1,9 +1,9 @@
-
+
- Hola Mundo
+ Hello World
@@ -11,7 +11,7 @@
-
Hola Mundo
+
Hello World
diff --git a/main.js b/main.js
index 05d055e..16a83ce 100644
--- a/main.js
+++ b/main.js
@@ -1,4 +1,3 @@
-// Particle field
const canvas = document.getElementById('particles');
const ctx = canvas.getContext('2d');
@@ -63,11 +62,10 @@ createParticles();
draw();
-// Typewriter subtitle
const lines = [
- 'bienvenido al universo digital',
- 'cada bit cuenta una historia',
- 'el código es poesía',
+ 'welcome to the digital universe',
+ 'every bit tells a story',
+ 'code is poetry',
];
let lineIdx = 0, charIdx = 0, deleting = false;
const typed = document.getElementById('typed');
@@ -96,7 +94,6 @@ function typeLoop() {
typeLoop();
-// Live elapsed counter
const start = Date.now();
const counterEl = document.getElementById('counter');