From cb324449f662bf72ba31a27db5ab51f964737b43 Mon Sep 17 00:00:00 2001 From: tsb95 Date: Fri, 14 Nov 2025 18:20:04 -1000 Subject: [PATCH] add title text to lead players into the goal of the game. --- index.html | 13 +++++++++++-- static/css/style.css | 31 +++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f7faa9a..d061c6e 100644 --- a/index.html +++ b/index.html @@ -3,14 +3,23 @@ + + + + Arcane Access Console -
- +
+

+

Master the pattern to proceed.

+

Capture each arcane node in flawless succession.

+

+
+ \ No newline at end of file diff --git a/static/css/style.css b/static/css/style.css index 022beaf..71cd543 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -35,6 +35,37 @@ body { /* border: .5px solid #bebcbc76; subtle outer border */ } +.audiowide-regular { + font-family: "Audiowide", sans-serif; + font-weight: 400; + font-style: normal; +} + +.puzzle-container { + display: flex; + flex-direction: column; + align-items: center; /* center children horizontally */ + margin: 0 auto; /* center the container itself if it has intrinsic width */ + gap: 16px; /* spacing between title and board */ + width: fit-content; /* shrink-wrap to board width */ +} + +/* keep your existing h1 rules, or scope them */ +.puzzle-container h1 { + text-align: center; + margin: 0; +} + +h1 { + color: white; + font-style: italic; + text-align: center; + + p { + font-size: 1.3rem; + } +} + .token { background-color: #17A398; width: 60%;