diff --git a/config.toml b/config.toml
index fadab7b7978cd4d4a1c1341459af119f034d0a86..db872db2876029eb0f26fb97f037f77f37492952 100755
--- a/config.toml
+++ b/config.toml
@@ -21,9 +21,10 @@ highlight_theme = "base16-ocean-dark"
 render_emoji = true
 
 [extra]
-version = "0.1.1"
+version = "0.1.2"
 favicon = "favicon.ico"
 cdnurl = "https://get.re128.net/"
+
 [[extra.header]]
 text = "Meta"
 link = "$base_url/meta"
diff --git a/sass/main.scss b/sass/main.scss
index 3c002b0dc8a436deab11fd6b2da581ce68772551..fb3ebd01adbb80a1deb8aee7ff2e12866c220955 100644
--- a/sass/main.scss
+++ b/sass/main.scss
@@ -66,11 +66,28 @@ ul {
 .welcome {
     display: flex;
     justify-content: center;
-    font-weight: 700;
-    font-size: 60px;
+    font-weight: 400;
+    font-size: 100px;
     padding-top: 2em;
     &-p {
         display: flex;
         justify-content: center;
     }
 }
+.error {
+    display: flex;
+    flex-flow: column;
+    align-items: center;
+    font-weight: 400;
+    margin-bottom: 2em;
+    min-height: calc(100vh - 87px);
+    & h1 {
+        font-size: 250px;
+    }
+    & h2 {
+        font-size: 100px;
+    }
+    & h3 {
+        font-size: 50px;
+    }
+}
diff --git a/templates/404.html b/templates/404.html
index a0745849ed70e90312f01fb5c228824577a30418..cff9dbcb946d69588eb5e6a51e6691428b6094d5 100644
--- a/templates/404.html
+++ b/templates/404.html
@@ -8,8 +8,10 @@
     {{macros::header(current_url="/")}}
 {% endblock header %}
 {% block content %}
+<div class="error">
 <h1> 404 </h1>
 <h2> Page Not Found </h2>
 <h3> The requested page doesn't exist
  or you don't have access to it. </h3>
+</div>
 {% endblock content %}
diff --git a/templates/base.html b/templates/base.html
index 8ed5d85ec8998fa3dcd8212364cd48ea8f835775..744a670e0058bf1909dcb9cf4efc3a90b0a14bd1 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -19,7 +19,7 @@
         {% else %}
         <link rel="stylesheet" href="{{ get_url(path='main.css') }}">
         {% endif %}
-        <title>{% block htmltitle %}{{ config.title }}{% endblock htmltitle %}</title>
+        <title>{% block htmltitle %} {{ config.title }}{% endblock htmltitle %}</title>
         {% if config.extra.localcdn %}
         <link rel="stylesheet" href="{{ get_url(path='normalize.css/normalize.css') }}">
         <link rel="stylesheet" href="{{ get_url(path='@fontsource/courier-prime/400.css') }}">