diff --git a/public/index.html b/public/index.html
index 3735bd5..f4b9934 100644
--- a/public/index.html
+++ b/public/index.html
@@ -29,7 +29,7 @@
-
A Day at the Beach
+
A Day at the Beach
Click to continue
@@ -116,8 +116,9 @@
-
At some point in history having light skin because desirable, and now in addition to protection one's skin from the damage of the sun, there was interest in preventing the skin from becoming darker as well.
-
+
At some point in history having light skin became desirable.
+
+
Now in addition to protecting one's skin from the damage of the sun, there was interest in preventing the skin from becoming darker as well.
A video will load to the right. Move your mouse around your face to protect yourself from the sun.
@@ -128,8 +129,7 @@
-
But colonialsm's effect on sun protection didn't stop there.
-
+
Perhaps this was an effect of colonialism.
Click to continue
@@ -137,6 +137,56 @@
+
+
But colonialism didn't stop there.
+
+
+
+
+
+
Some people still report using sunscreen to prevent their skin from darkening.
+
+
+
Worried about consequences of colorism.
+
+
+
+
+
Just in the past decade have sunscreens specifically developed for people of color been more widely available.
+
+
+
+
+
+
+ Skin of color is less represented in sunscreen research.
+
+
+
+ Some darker skin tones are not represented in the research at all.
+
+
+
+
+
+
+
+
+ Maybe this isn't a day at the beach afterall.
+
+
+
+
diff --git a/public/navigation.js b/public/navigation.js
index 09c3d1f..c8806a7 100644
--- a/public/navigation.js
+++ b/public/navigation.js
@@ -23,6 +23,11 @@ const addNavigation = () => {
const message14 = document.getElementById("message-14");
const message15 = document.getElementById("message-15");
const message16 = document.getElementById("message-16");
+ const message17 = document.getElementById("message-17");
+ const message18 = document.getElementById("message-18");
+ const message19 = document.getElementById("message-19");
+ const message20 = document.getElementById("message-20");
+ const message21 = document.getElementById("message-21");
const backgroundVideo = document.getElementById("background-video");
const backgroundAudio = document.getElementById("background-audio");
@@ -120,4 +125,37 @@ const addNavigation = () => {
message15.style.display = "none";
message16.style.display = "flex";
});
+
+ message16.addEventListener("click", () => {
+ message16.style.display = "none";
+ message17.style.display = "flex";
+ });
+
+ message17.addEventListener("click", () => {
+ message17.style.display = "none";
+ message18.style.display = "flex";
+ });
+
+ message18.addEventListener("click", () => {
+ message18.style.display = "none";
+ message19.style.display = "flex";
+ });
+
+ message19.addEventListener("click", () => {
+ message19.style.display = "none";
+ message20.style.display = "flex";
+ });
+
+ message20.addEventListener("click", () => {
+ message20.style.display = "none";
+ message21.style.display = "flex";
+ });
+
+ message21.addEventListener("click", () => {
+ let title = document.getElementById("title");
+
+ document.querySelector("main").classList.add("bg-black");
+ backgroundAudio.pause();
+ backgroundVideo.pause();
+ });
};