diff --git a/sass/style.scss b/sass/style.scss
index e765342..ec8e01a 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -6,6 +6,12 @@ body {
color: #ffffff;
}
+body {
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+}
+
a:link,
a:visited {
color: #ffffff;
@@ -65,6 +71,7 @@ main.main-content {
max-width: 10in;
margin: 0 auto;
color: #e8e8e8;
+ flex-grow: 1;
}
.home h1.my-name {
@@ -118,3 +125,16 @@ article.post .post-title {
article.post .post-date {
margin-bottom: 3em;
}
+
+/* Footer */
+footer.page-footer {
+ font-size: 9pt;
+ text-align: center;
+ margin-top: 5em;
+ margin-bottom: 0.5em;
+}
+
+footer.page-footer hr {
+ margin-bottom: 1em;
+ width: 20%;
+}
\ No newline at end of file
diff --git a/templates/base.html b/templates/base.html
index b97c138..c196a80 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -34,5 +34,12 @@
{% block content %}{% endblock %}
+
+