diff --git a/index.html b/index.html index ae8fce7..850db63 100644 --- a/index.html +++ b/index.html @@ -6,9 +6,15 @@ Post-Pandemic Loneliness + -

Post-Pandemic Loneliness Simulator

-

Click to add people. Watch how they interact (or don't) in a post-pandemic world.

+ \ No newline at end of file diff --git a/main.js b/main.js index d31c46b..873c82d 100644 --- a/main.js +++ b/main.js @@ -71,6 +71,6 @@ function displayLonelinessMetric() { fill(0); textSize(16); - text(`Loneliness Score: ${lonelinessScore.toFixed(2)}`, width / 2, 20); - text(`People: ${people.length}`, width / 2, 40); + text(`Loneliness Score: ${lonelinessScore.toFixed(2)}`, width / 2, height - 40); + text(`People: ${people.length}`, width / 2, height - 20); } \ No newline at end of file