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; + }
+