From 2c67d4e452667cfb371feb013838439015db230f Mon Sep 17 00:00:00 2001 From: Ferdinand Date: Fri, 3 Apr 2026 13:59:20 +0200 Subject: [PATCH] style: Schriftart auf Poppins umgestellt (Google Fonts) Co-Authored-By: Claude Sonnet 4.6 --- style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 9789fee..3b69b90 100644 --- a/style.css +++ b/style.css @@ -1,7 +1,9 @@ +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); + *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { - font-family: system-ui, sans-serif; + font-family: 'Poppins', sans-serif; background: #f5f5f5; color: #222; min-height: 100vh;