|
| 1 | +<!doctype html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>π§ You found it!</title> |
| 7 | + <style> |
| 8 | + * { |
| 9 | + margin: 0; |
| 10 | + padding: 0; |
| 11 | + box-sizing: border-box; |
| 12 | + } |
| 13 | + body { |
| 14 | + min-height: 100vh; |
| 15 | + display: flex; |
| 16 | + flex-direction: column; |
| 17 | + align-items: center; |
| 18 | + justify-content: center; |
| 19 | + background: #111; |
| 20 | + color: #f5f4ef; |
| 21 | + font-family: Georgia, "Times New Roman", serif; |
| 22 | + text-align: center; |
| 23 | + padding: 2rem; |
| 24 | + } |
| 25 | + h1 { |
| 26 | + font-size: clamp(2rem, 5vw, 4rem); |
| 27 | + font-weight: 400; |
| 28 | + margin-bottom: 1rem; |
| 29 | + animation: glow 2.5s ease-in-out infinite alternate; |
| 30 | + } |
| 31 | + p { |
| 32 | + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 33 | + font-size: 1.1rem; |
| 34 | + line-height: 1.8; |
| 35 | + color: rgba(245, 244, 239, 0.7); |
| 36 | + max-width: 480px; |
| 37 | + margin-bottom: 2.5rem; |
| 38 | + } |
| 39 | + a { |
| 40 | + display: inline-block; |
| 41 | + padding: 0.7rem 2rem; |
| 42 | + border: 1px solid rgba(255, 255, 255, 0.25); |
| 43 | + border-radius: 999px; |
| 44 | + color: #f5f4ef; |
| 45 | + text-decoration: none; |
| 46 | + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 47 | + font-size: 0.78rem; |
| 48 | + letter-spacing: 0.18em; |
| 49 | + text-transform: uppercase; |
| 50 | + transition: |
| 51 | + background 0.2s, |
| 52 | + color 0.2s; |
| 53 | + } |
| 54 | + a:hover { |
| 55 | + background: #f5f4ef; |
| 56 | + color: #111; |
| 57 | + } |
| 58 | + @keyframes glow { |
| 59 | + from { |
| 60 | + text-shadow: 0 0 20px rgba(255, 204, 0, 0.3); |
| 61 | + } |
| 62 | + to { |
| 63 | + text-shadow: |
| 64 | + 0 0 40px rgba(255, 204, 0, 0.6), |
| 65 | + 0 0 80px rgba(255, 204, 0, 0.2); |
| 66 | + } |
| 67 | + } |
| 68 | + </style> |
| 69 | + </head> |
| 70 | + <body> |
| 71 | + <h1>π§ Congratulations!</h1> |
| 72 | + <p> |
| 73 | + You discovered the secret page. You clicked on the brain stem — the most ancient part of the brain, quietly keeping |
| 74 | + everything running beneath the surface. Just like this hidden page. |
| 75 | + </p> |
| 76 | + <a href="index.html">β Back to Reality</a> |
| 77 | + </body> |
| 78 | +</html> |
0 commit comments