summaryrefslogtreecommitdiff
path: root/404.html
blob: 6aa630452a3a24264ab1e0a5bda35f2c0e833970 (plain)
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
---
title: Page Not Found
---
<!DOCTYPE html>
<html lang="en">
<head>
	{%- include head.html -%}
	<style>
	h1 {
		background-color: #eee;
		width: 220px;
		height: 220px;
		border-radius: 100%;
		display: flex;
		justify-content: center;
		align-items: center
	}
	body {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		font-size: 20px;
		height: 80vh;
	}
	p {
		font-size: 1.5em;
		text-align: center;
		margin: 0;
		line-height: 2em;
	}
	</style>
</head>
<body>
	<h1>404</h1>
	<p>Page not found.</p>
</body>
</html>