From 0712dc8d5816bff3156e3016a11fbc0ce208cf45 Mon Sep 17 00:00:00 2001
From: Oli <147245351+what-does-that-do@users.noreply.github.com>
Date: Sun, 1 Dec 2024 09:34:19 +0000
Subject: [PATCH] Fixed logo to use correct font (needed a space) and red text.

---
 src/components/RoboConLogo.astro | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/components/RoboConLogo.astro b/src/components/RoboConLogo.astro
index d61fddc..a13ab07 100644
--- a/src/components/RoboConLogo.astro
+++ b/src/components/RoboConLogo.astro
@@ -12,13 +12,14 @@ let { clickable = true, href="/" } = Astro.props
 <style>
     .logo {
         height:1em;
-        font-family: "FugazOne";
+        font-family: "Fugaz One";
         font-size: 2em;
         line-height: 1em;
         padding-left: 0.1em;
         padding-right:0.1em;
         color: var(--rc-red);
         text-decoration: none;
+        color: red;
         text-shadow: -0.05em 0.05em black;
         cursor: {clickable ? "auto" : "default"};
     }