-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
101 lines (93 loc) · 2.46 KB
/
Copy path404.html
File metadata and controls
101 lines (93 loc) · 2.46 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 — Página não encontrada · Rafael Lima</title>
<meta name="robots" content="noindex,follow">
<link rel="icon" type="image/png" sizes="96x96" href="assets/favicon/favicon-96x96.png">
<link rel="icon" href="assets/favicon/favicon.svg" type="image/svg+xml" sizes="any">
<link rel="icon" href="assets/favicon/favicon.ico">
<link rel="apple-touch-icon" href="assets/favicon/apple-touch-icon.png">
<link rel="stylesheet" href="assets/css/style.css">
<script>
(function () {
const stored = localStorage.getItem('theme');
if (stored === 'dark' || stored === 'light') {
document.documentElement.dataset.theme = stored;
}
})();
</script>
<style>
.error-page {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 40px;
max-width: var(--max-width);
margin: 0 auto;
padding: 60px 32px;
}
.error-text .code {
font-size: 96px;
font-weight: 700;
line-height: 1;
letter-spacing: -2px;
color: var(--accent);
margin-bottom: 8px;
}
.error-text h1 {
font-size: 36px;
font-weight: 700;
margin-bottom: 16px;
}
.error-text p {
font-size: 18px;
color: var(--text-light);
margin-bottom: 28px;
}
.error-img {
text-align: right;
}
.error-img img {
max-width: 100%;
height: auto;
display: block;
margin-left: auto;
}
@media (max-width: 768px) {
.error-page {
grid-template-columns: 1fr;
text-align: center;
padding: 40px 24px;
}
.error-img {
text-align: center;
order: -1;
max-width: 280px;
margin: 0 auto;
}
.error-text .code {
font-size: 72px;
}
.error-text h1 {
font-size: 28px;
}
}
</style>
</head>
<body>
<main class="error-page">
<div class="error-text">
<div class="code">404</div>
<h1>Página não encontrada</h1>
<p>Essa página não existe (ou existia e saiu do ar). Se você chegou aqui por um link antigo, segue o caminho de volta.</p>
<a class="btn" href="/">voltar para o início</a>
</div>
<div class="error-img">
<img src="assets/img/rafael_lima-2026-hover.png" alt="Rafael Lima rezando">
</div>
</main>
</body>
</html>