From 29d6b38e27b2bddafd3491737c9a2be298a79d74 Mon Sep 17 00:00:00 2001
From: Nathan Woodburn <github@nathan.woodburn.au>
Date: Thu, 6 Mar 2025 23:33:37 +1100
Subject: [PATCH] fix: Make font a bit smaller

---
 server.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server.py b/server.py
index bb1217a..99a9412 100644
--- a/server.py
+++ b/server.py
@@ -255,7 +255,7 @@ def og_image():
         
     # Use font from assets
     font_path = "templates/assets/fonts/Orbitron-VariableFont_wght.ttf"
-    font_size = 200
+    font_size = 180
     # Shrink font size if text is too long
     if (max(len(line) for line in text.split("\n")) > 13):
         font_size = 150