diff --git a/Makefile b/Makefile
index 2e0b265..98ecce0 100644
--- a/Makefile
+++ b/Makefile
@@ -13,4 +13,7 @@ static/dist/line-awesome/fonts/la-brands-400.woff: node_modules/line-awesome/dis
static/dist/github-markdown-css/github-markdown-light.css: node_modules/github-markdown-css/github-markdown-light.css
@mkdir -p $(dir $@)
- cp $< $@
\ No newline at end of file
+ cp $< $@
+
+node_modules:
+ npm install
\ No newline at end of file
diff --git a/sass/global.scss b/sass/global.scss
new file mode 100644
index 0000000..a0c25c2
--- /dev/null
+++ b/sass/global.scss
@@ -0,0 +1,17 @@
+// This file bundles together all site styles, allowing the required stuff to load in one request
+
+// Fixes
+@import "styles/fixes/instagram";
+@import "styles/fixes/markdown";
+@import "styles/fixes/mermaid";
+@import "styles/fixes/tiktok";
+@import "styles/fixes/youtube";
+
+// Core stuff
+@import "styles/icons";
+@import "styles/layout";
+@import "styles/typography";
+@import "styles/utils";
+
+// Always-loaded components
+@import "styles/components/github-card";
\ No newline at end of file
diff --git a/static/dist/.gitignore b/static/dist/.gitignore
index 09d1b5a..4796ae0 100644
--- a/static/dist/.gitignore
+++ b/static/dist/.gitignore
@@ -1 +1,2 @@
-/line-awesome/
\ No newline at end of file
+/line-awesome/
+/github-markdown-css/
\ No newline at end of file
diff --git a/templates/base.html b/templates/base.html
index 1416385..c5f0db6 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -41,16 +41,7 @@
{# Site-wide styles #}
-
-
-
-
-
-
-
-
-
-
+
{# Component styles #}
{% block component_styles %}