-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
65 lines (65 loc) · 1.8 KB
/
Copy path404.html
File metadata and controls
65 lines (65 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 — Tushin Mallick</title>
<link rel="icon" href="/images/omega.png" type="image/png" />
<meta name="robots" content="noindex" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500&family=Playfair+Display:wght@600&display=swap"
rel="stylesheet"
/>
<style>
:root {
color-scheme: light dark;
}
html, body {
margin: 0;
padding: 0;
height: 100%;
font-family: "Inter", system-ui, sans-serif;
background: #fcfcfa;
color: #0e1520;
}
@media (prefers-color-scheme: dark) {
html, body { background: #0e1520; color: #fcfcfa; }
}
main {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 2rem;
}
h1 {
font-family: "Playfair Display", serif;
font-size: clamp(3rem, 10vw, 6rem);
margin: 0 0 0.5rem;
letter-spacing: -0.02em;
}
p { font-size: 1.05rem; opacity: 0.8; margin: 0.25rem 0 1.5rem; }
a {
display: inline-block;
padding: 0.6rem 1.4rem;
border-radius: 999px;
border: 1px solid #4c93ff;
color: #4c93ff;
text-decoration: none;
font-weight: 500;
letter-spacing: 0.05em;
transition: background 0.2s ease, color 0.2s ease;
}
a:hover { background: #4c93ff; color: #fcfcfa; }
</style>
</head>
<body>
<main>
<h1>404</h1>
<p>This page seems to have wandered off.</p>
<a href="/">Back to home</a>
</main>
</body>
</html>