From 7badca80c95881eb098b9c07c258354bd0870e6e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 14 Nov 2025 02:24:36 +0000 Subject: [PATCH 1/2] Initial plan From 4bd2aac16365acafdbc84cc25e1e3d07cef53d4d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 14 Nov 2025 02:28:12 +0000 Subject: [PATCH 2/2] Add footer with Game Off '25 credits and links Co-authored-by: leereilly <121322+leereilly@users.noreply.github.com> --- index.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/index.html b/index.html index f04bfbd..a095a8b 100644 --- a/index.html +++ b/index.html @@ -9,6 +9,7 @@ margin: 0; padding: 0; display: flex; + flex-direction: column; justify-content: center; align-items: center; min-height: 100vh; @@ -18,10 +19,27 @@ #game-container { box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); } + footer { + margin-top: 20px; + padding: 10px 20px; + text-align: center; + font-size: 12px; + color: #8b949e; + } + footer a { + color: #58a6ff; + text-decoration: none; + } + footer a:hover { + text-decoration: underline; + }
+