From 3abb6775370d09cfc39f8823954fc97a1e5c9709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Cortes=20Cer=C3=B3n?= Date: Mon, 30 Jun 2025 20:37:36 -0600 Subject: [PATCH] feat: add base CSS reset, variables and container styles --- css/main.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/css/main.css b/css/main.css index e69de29..177f39c 100644 --- a/css/main.css +++ b/css/main.css @@ -0,0 +1,16 @@ +body { + font-family: var(--font-family); + color: var(--primary-color); + background-color: var(--secondary-color); + line-height: 1.6; +} + +.container { + max-width: var(--max-width); + margin: 0 auto; + padding: var(--spacing); +} +h1 { + font-size: 2.5rem; + margin-bottom: var(--spacing); +} \ No newline at end of file