Skip to main content

max / makenotwork

2.5 KB · 76 lines History Blame Raw
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>Page Not Found - makenot.work</title>
7 <link rel="preconnect" href="https://fonts.googleapis.com">
8 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9 <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Lato&family=Young+Serif&display=swap" rel="stylesheet">
10 <style>
11 * { margin: 0; padding: 0; box-sizing: border-box; }
12 body {
13 min-height: 100vh;
14 display: flex;
15 flex-direction: column;
16 align-items: center;
17 justify-content: center;
18 padding: 2rem;
19 background: #ede8e1;
20 color: #3d3530;
21 font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
22 }
23 .wordmark {
24 position: absolute;
25 top: 2rem;
26 left: 2rem;
27 font-family: "Young Serif", Georgia, "Times New Roman", serif;
28 font-size: 1.25rem;
29 color: #3d3530;
30 text-decoration: none;
31 }
32 .wordmark .dot { color: #6c5ce7; }
33 .container { text-align: center; max-width: 500px; }
34 .code {
35 font-size: 8rem;
36 font-weight: 400;
37 line-height: 1;
38 margin-bottom: 1rem;
39 font-family: "Young Serif", Georgia, "Times New Roman", serif;
40 color: #3d3530;
41 }
42 .title {
43 font-size: 1.25rem;
44 font-family: "IBM Plex Mono", "Courier New", Consolas, monospace;
45 color: #8a8480;
46 margin-bottom: 1.5rem;
47 }
48 .message {
49 color: #8a8480;
50 margin-bottom: 2rem;
51 line-height: 1.6;
52 }
53 a.btn {
54 display: inline-block;
55 padding: 0.75rem 1.5rem;
56 background: #3d3530;
57 color: #ede8e1;
58 text-decoration: none;
59 border-radius: 6px;
60 font-weight: 500;
61 transition: opacity 0.2s;
62 }
63 a.btn:hover { opacity: 0.85; }
64 </style>
65 </head>
66 <body>
67 <a href="/" class="wordmark">Makenot<span class="dot">.</span>work</a>
68 <div class="container">
69 <div class="code">404</div>
70 <div class="title">Page not found</div>
71 <p class="message">The page you're looking for doesn't exist or has been moved.</p>
72 <a href="/" class="btn">Go Home</a>
73 </div>
74 </body>
75 </html>
76