diff --git a/index.html b/index.html
index 56ff885..16f0d72 100644
--- a/index.html
+++ b/index.html
@@ -8,6 +8,9 @@
+
+
+
@@ -95,7 +98,7 @@
quick contact is a phone call, but Discord, email, and
text work too.
-
+
diff --git a/script.js b/script.js
index 911d2f0..415530c 100644
--- a/script.js
+++ b/script.js
@@ -6,6 +6,6 @@ infoContainer.addEventListener("click", () => {
.then((response) => response.text())
.then((text) => {
infoContainer.innerHTML = atob(text);
- infoContainer.style.background = "transparent";
+ infoContainer.classList.remove("cover");
});
});
diff --git a/style.css b/style.css
index dc59a9c..1c55ce6 100644
--- a/style.css
+++ b/style.css
@@ -78,6 +78,9 @@ p {
#contact-info-container {
min-height: 57px;
max-width: 162.13px;
+}
+
+.cover {
cursor: pointer;
background: #000000;
}