bunbun.dev/404.html

54 lines
954 B
HTML
Raw Normal View History

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