-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
96 lines (96 loc) · 2.7 KB
/
404.html
File metadata and controls
96 lines (96 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/Public/Images/icon.png" type="image/png">
<title>Page Not Found — Paux Design</title>
<meta name="robots" content="noindex, follow">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Manrope:wght@300;400;500;600;700&family=Hanken+Grotesk:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/styles.css">
<style>
.notfound-page {
min-height: 100vh;
padding: 140px 20px 80px;
display: flex;
align-items: center;
justify-content: center;
}
.notfound-card {
width: min(760px, 100%);
background: #fff;
border: 1px solid var(--border);
border-radius: 24px;
box-shadow: 0 16px 40px rgba(190,195,230,0.55);
padding: 56px 42px;
text-align: center;
position: relative;
isolation: isolate;
}
.notfound-card::before {
content: '';
position: absolute;
inset: 10px;
border-radius: 16px;
background: rgba(255, 255, 255, 0.62);
border: 1px solid rgba(38, 30, 72, 0.05);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 8px 20px rgba(38, 30, 72, 0.08);
z-index: 0;
}
.notfound-card > * { position: relative; z-index: 1; }
.notfound-code {
font-family: var(--font-meta);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--accent);
margin-bottom: 12px;
}
.notfound-title {
font-family: var(--font-serif);
font-size: clamp(30px, 4vw, 44px);
line-height: 1.15;
color: var(--dark);
margin-bottom: 12px;
}
.notfound-text {
color: var(--mid);
font-size: 14px;
line-height: 1.7;
max-width: 560px;
margin: 0 auto 24px;
}
.notfound-actions {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
}
.notfound-actions .btn {
width: auto;
max-width: fit-content;
}
@media (max-width: 700px) {
.notfound-card { padding: 34px 22px; border-radius: 18px; }
.notfound-card::before { inset: 8px; border-radius: 12px; }
}
</style>
</head>
<body class="page-grid-bg">
<main class="notfound-page">
<section class="notfound-card">
<div class="notfound-code">404 error</div>
<h1 class="notfound-title">This page does not exist.</h1>
<p class="notfound-text">The URL may be outdated or mistyped. You can continue browsing from the links below.</p>
<div class="notfound-actions">
<a href="/" class="btn btn-dark">Back to home</a>
<a href="/work/" class="btn btn-outline">See work</a>
<a href="/contact/" class="btn btn-outline">Contact</a>
<a href="/es/404.html" class="btn btn-outline">ES</a>
</div>
</section>
</main>
</body>
</html>