2024-05-21 15:13:24 -07:00
|
|
|
<!doctype html>
|
2024-11-01 14:41:17 -07:00
|
|
|
<html lang="en">
|
2024-11-01 15:07:16 -07:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<title>404 Not Found</title>
|
|
|
|
<style>
|
2024-05-21 15:13:24 -07:00
|
|
|
:root {
|
2024-11-01 15:07:16 -07:00
|
|
|
--foreground: #ffffff;
|
|
|
|
--background: #000000;
|
2024-05-21 15:13:24 -07:00
|
|
|
|
2024-11-01 15:07:16 -07:00
|
|
|
--accent-50: #adadad;
|
2024-05-21 15:13:24 -07:00
|
|
|
}
|
2024-11-01 15:07:16 -07:00
|
|
|
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
:root {
|
|
|
|
--foreground: #000000;
|
|
|
|
--background: #ffffff;
|
|
|
|
|
|
|
|
--accent-50: #525252;
|
|
|
|
}
|
2024-05-21 15:13:24 -07:00
|
|
|
}
|
|
|
|
|
2024-11-01 15:07:16 -07:00
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-05-21 15:13:24 -07:00
|
|
|
margin: 0;
|
2024-11-01 15:07:16 -07:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
min-height: 100vh;
|
2024-05-21 15:13:24 -07:00
|
|
|
}
|
|
|
|
|
2024-11-01 15:07:16 -07:00
|
|
|
body {
|
|
|
|
background: var(--background);
|
|
|
|
font-family: "Roboto", sans-serif;
|
|
|
|
color: var(--foreground);
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
margin: 0;
|
|
|
|
color: var(--accent-50);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
2024-05-21 15:13:24 -07:00
|
|
|
|
2024-11-01 15:07:16 -07:00
|
|
|
<body>
|
|
|
|
<h1>404</h1>
|
|
|
|
<h3>Page Not Found</h3>
|
|
|
|
</body>
|
2024-05-21 15:13:24 -07:00
|
|
|
</html>
|