diff --git a/err/400.html b/err/400.html
index e9746c4..8ddd8f4 100644
--- a/err/400.html
+++ b/err/400.html
@@ -2,7 +2,7 @@
System64.dev - Error
-
+
diff --git a/err/403.html b/err/403.html
index 3df8a69..dd9eb9f 100644
--- a/err/403.html
+++ b/err/403.html
@@ -2,7 +2,7 @@
System64.dev - Error
-
+
diff --git a/err/404.html b/err/404.html
index dbfd1e1..6087afa 100644
--- a/err/404.html
+++ b/err/404.html
@@ -2,7 +2,7 @@
System64.dev - Error
-
+
diff --git a/err/429.html b/err/429.html
index 8856b94..61f0699 100644
--- a/err/429.html
+++ b/err/429.html
@@ -2,7 +2,7 @@
System64.dev - Error
-
+
diff --git a/err/500.html b/err/500.html
index a587d72..41ef655 100644
--- a/err/500.html
+++ b/err/500.html
@@ -2,7 +2,7 @@
System64.dev - Error
-
+
diff --git a/err/502.html b/err/502.html
index 56a18a1..9dc0d80 100644
--- a/err/502.html
+++ b/err/502.html
@@ -2,7 +2,7 @@
System64.dev - Error
-
+
diff --git a/err/503.html b/err/503.html
index f74bcbd..90921d6 100644
--- a/err/503.html
+++ b/err/503.html
@@ -2,7 +2,7 @@
System64.dev - Error
-
+
diff --git a/styles/err_style.css b/styles/err_style.css
new file mode 100644
index 0000000..36aecf8
--- /dev/null
+++ b/styles/err_style.css
@@ -0,0 +1,49 @@
+/* CSS for System64.dev v2 Error Pages, Under MIT License. (6.6.23) */
+
+/* decoration */
+body {
+ background-image: url("/img/bg.jpg");
+ background-repeat: no-repeat;
+}
+
+/* positioning and sizing */
+
+.container { /* not docker or kubernetes, sadly. */
+ display: flex;
+ flex-direction: column;
+}
+
+div {
+ margin: auto;
+ align-items: center;
+}
+
+img {
+ width: 20%;
+ height: auto;
+}
+
+/* fonts */
+
+@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@600&display=swap'); /* Bitter */
+@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap'); /* Share Tech Mono */
+
+h1 {
+ font-family: 'Bitter', serif;
+ color: white;
+ font-size: 50px;
+ text-align: center;
+}
+p {
+ font-family: 'Bitter', serif;
+ color: white;
+ text-align: center;
+}
+p.tiny {
+ font-size: 12px;
+ margin-top: -5px;
+}
+a {
+ color: white;
+ font-family: 'Bitter', serif;
+}