From 501592caddcc3ff6056d697cc12f97b2c1e156be Mon Sep 17 00:00:00 2001 From: Niklas Amundsson Date: Fri, 21 Feb 2025 20:36:01 +0100 Subject: [PATCH] add 404 page in windows blue screen theme mixed with harry potter language --- src/index.html | 23 +++++++++++++++++++++++ src/styles.css | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 src/index.html create mode 100644 src/styles.css diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..04d2c0c --- /dev/null +++ b/src/index.html @@ -0,0 +1,23 @@ + + + + + 404 Not Found + + + +
+

+ 404 - The Page That Must Not Be Named +

+ +
+ It seems you’ve stumbled upon a forbidden corridor.
+ Let’s get you back to a safer place, shall we?

+ Maybe you were looking for the library or the history classroom? +
+
+ + diff --git a/src/styles.css b/src/styles.css new file mode 100644 index 0000000..53c1855 --- /dev/null +++ b/src/styles.css @@ -0,0 +1,37 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +html, body { + height: 100%; + width: 100%; + font-family: monospace; + color: #FFFFFF; + background-color: #0000AA; +} + +.container { + display: flex; + flex-direction: column; + justify-content: start; + align-items: start; + text-align: left; + max-width: 800px; + margin: 0 auto; + padding: 2rem; +} + +h1 { + font-size: 2.5rem; + margin-bottom: 2rem; +} + +.error-message { + font-size: 1.3rem; + + a { + color: white; + } +}