From e3c41d191bef6a89edea0bb9bc73bba2295ececb Mon Sep 17 00:00:00 2001 From: Voxel Date: Fri, 11 Apr 2025 17:03:10 -0400 Subject: [PATCH] Create style.css --- style.css | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..c84c800 --- /dev/null +++ b/style.css @@ -0,0 +1,43 @@ +html, body { + margin: 0; + padding: 0; + min-height: 100vh; + display: flex; + flex-direction: column; + background-color: black; + color: white; + font-family: Arial; + max-width: 1000px; + margin-left: auto; + margin-right: auto; +} + +a { + color: #05d5ff; +} + +img { + display: block; + margin-left: auto; + margin-right: auto; +} + +.center-text { + text-align: center; +} + +h1.center-text { + margin-bottom: 0.3em; +} + +p.center-text { + margin-top: 0.3em; +} + +footer { + display: flex; + justify-content: center; + gap: 8px; + padding: 16px; + margin-top: auto; +}