summaryrefslogtreecommitdiff
path: root/404.html
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-11-18 21:31:05 +0500
committerilotterytea <iltsu@alright.party>2025-11-18 21:31:05 +0500
commit08298ec1c634d5b9eb38497065b00ed67932d11c (patch)
tree1608a15705b4e831ec0ff5efb48febd0ad8576f1 /404.html
initial commitHEADmaster
Diffstat (limited to '404.html')
-rw-r--r--404.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/404.html b/404.html
new file mode 100644
index 0000000..eff592f
--- /dev/null
+++ b/404.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<html>
+ <style>
+ * {
+ margin: 0;
+ padding: 0;
+ }
+ html {
+ background: black;
+ color: white;
+ font-size: 20px;
+ }
+ h1 {
+ font-size: 128px;
+ }
+ body {
+ width: 100%;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ gap: 16px;
+ }
+ .glow {
+ color: #fff;
+ -webkit-animation: glow 2s ease-in-out infinite alternate;
+ -moz-animation: glow 2s ease-in-out infinite alternate;
+ animation: glow 2s ease-in-out infinite alternate;
+ }
+ @keyframes glow {
+ 0% {
+ text-shadow: 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #00ff00, 0 0 50px #00ee00, 0 0 60px #00dd00, 0 0 70px #00cc00, 0 0 80px #00bb00;
+ }
+ 100% {
+ text-shadow: 0 0 5px #fff, 0 0 10px #00aa0a, 0 0 15px, 0 0 20px #009900, 0 0 25px #008800, 0 0 30px #007700, 0 0 35px #006600;
+ }
+ }
+
+ </style>
+ <body>
+ <h1 class="glow">404</h1>
+ <p>There is nothing to see here.</p>
+ </body>
+</html>