-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
142 lines (139 loc) · 4.47 KB
/
404.html
File metadata and controls
142 lines (139 loc) · 4.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exhibit Not Found — The Cipher Museum</title>
<meta name="description" content="The exhibit you are looking for has been lost to history. Return to The Cipher Museum.">
<meta name="theme-color" content="#0a0a0f">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<meta property="og:title" content="Exhibit Not Found — The Cipher Museum">
<meta property="og:description" content="The exhibit you are looking for has been lost to history. Return to The Cipher Museum.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://ciphermuseum.com/404.html">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Exhibit Not Found — The Cipher Museum">
<meta name="twitter:description" content="The exhibit you are looking for has been lost to history. Return to The Cipher Museum.">
<link rel="canonical" href="https://ciphermuseum.com/404.html">
<link rel="stylesheet" href="css/museum.css">
<style>
.lost-exhibit {
min-height: 70vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 3rem 1.5rem;
}
.lost-code {
font-family: var(--fm);
font-size: 8rem;
font-weight: 700;
color: var(--gold);
line-height: 1;
letter-spacing: .05em;
margin-bottom: .5rem;
opacity: .85;
}
.lost-title {
font-family: var(--fh);
font-size: 1.8rem;
color: var(--tx1);
margin-bottom: 1rem;
}
.lost-message {
font-size: 1.05rem;
color: var(--tx2);
max-width: 520px;
line-height: 1.7;
margin-bottom: 2rem;
}
.lost-cipher {
font-family: var(--fm);
font-size: .85rem;
color: var(--tx3);
letter-spacing: .25em;
margin-bottom: 2.5rem;
word-break: break-all;
max-width: 400px;
}
.lost-links {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.lost-links a {
display: inline-block;
padding: .65rem 1.5rem;
font-family: var(--fm);
font-size: .8rem;
letter-spacing: .12em;
text-transform: uppercase;
text-decoration: none;
border: 1px solid var(--gold-b);
color: var(--gold);
border-radius: 4px;
transition: background .2s, color .2s;
}
.lost-links a:hover {
background: var(--gold);
color: var(--black);
}
</style>
</head>
<body>
<a class="skip-link" href="#main-content">Skip to main content</a>
<nav class="museum-nav" aria-label="Primary">
<a href="index.html" class="nav-brand">🏛️ The Cipher Museum</a>
<div class="nav-links">
<a href="museum-map.html">Museum Map</a>
<a href="timeline.html">Timeline</a>
<a href="challenges.html">Challenges</a>
<a href="glossary.html">Glossary</a>
</div>
</nav>
<main id="main-content">
<div class="lost-exhibit">
<div class="lost-code">404</div>
<h1 class="lost-title">Exhibit Not Found</h1>
<p class="lost-message">
This exhibit has been lost to history — like a message encrypted
with a one-time pad whose key was destroyed. The page you requested
doesn't exist in our collection.
</p>
<div class="lost-cipher" aria-hidden="true">
WKLV SDJH KDV EHHQ ORVW
</div>
<div class="lost-links">
<a href="index.html">Return to Lobby</a>
<a href="museum-map.html">Museum Map</a>
<a href="challenges.html">Try a Challenge</a>
</div>
</div>
</main>
<footer class="museum-footer">
<div class="footer-grid">
<div class="footer-col">
<h4 class="footer-heading">The Cipher Museum</h4>
<p class="footer-text">An interactive journey through 2,500 years of cryptographic history.</p>
</div>
<div class="footer-col">
<h4 class="footer-heading">Explore</h4>
<ul class="footer-list">
<li><a href="museum-map.html">Museum Map</a></li>
<li><a href="timeline.html">Timeline</a></li>
<li><a href="challenges.html">Challenges</a></li>
<li><a href="glossary.html">Glossary</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<span class="footer-copy">© The Cipher Museum · MIT License</span>
</div>
</footer>
<script src="js/nav.js" defer></script>
<script src="js/lightbox.js"></script>
</body>
</html>