From ba7bbbd40e8d038eb4f9868ba0f2cd0779a546db Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 17 Dec 2025 18:41:35 +0000 Subject: [PATCH] Add responsive styles for hero title on mobile Co-authored-by: matissjurevics --- src/index.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/index.css b/src/index.css index accb784..60ac021 100644 --- a/src/index.css +++ b/src/index.css @@ -110,4 +110,17 @@ button:focus-visible { button { background-color: #f9f9f9; } +} + +/* Hero Title Mobile Responsive */ +@media (max-width: 768px) { + .hero-title { + font-size: 3rem !important; + } +} + +@media (max-width: 480px) { + .hero-title { + font-size: 2rem !important; + } } \ No newline at end of file