From 63bfaf9619dbe2a4c5e95c07fbc6cd83a333c08d Mon Sep 17 00:00:00 2001 From: ben Date: Tue, 18 Aug 2026 19:14:30 +0200 Subject: [PATCH] update --- frontend/style.css | 63 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 frontend/style.css diff --git a/frontend/style.css b/frontend/style.css new file mode 100644 index 0000000..e07ae7f --- /dev/null +++ b/frontend/style.css @@ -0,0 +1,63 @@ + +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +body { + font-family: system-ui, sans-serif; + background-color: #3d3846; + color: #f5f5f5; + min-height: 100vh; +} + +.container { + width: min(1100px, 90%); + margin: 0 auto; +} + +h1 { + font-size: 3rem; + line-height: 1.1; +} + +p { + color: #a9adb7; + line-height: 1.6; +} + +.button { + display: inline-block; + padding: 0.8rem 1.2rem; + border-radius: 8px; + text-decoration: none; + font-weight: 600; + background: #ffffff; + color: #111; +} + +.button:hover { + opacity: 0.85; +} + +.hero { + min-height: 100vh; + display: flex; + align-items: center; +} + +.hero-content { + max-width: 650px; +} + +.hero-content p { + margin-top: 1rem; + max-width: 500px; +} + +.hero-actions { + display: flex; + gap: 1rem; + margin-top: 2rem; +} \ No newline at end of file