From 85a2a330f729d70dfce1b81dc69ec15436a3d44c Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Mon, 4 May 2026 09:40:42 -0500 Subject: Initial clean commit --- style.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 style.css (limited to 'style.css') diff --git a/style.css b/style.css new file mode 100644 index 0000000..43a6973 --- /dev/null +++ b/style.css @@ -0,0 +1,32 @@ +@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap'); + +*, *::before, *::after { + box-sizing: border-box; +} + +html, body { + background-color: #121212; + margin: 0; + padding: 0; + min-height: 100vh; + overflow: hidden; +} + +body { + display: flex; + justify-content: center; + align-items: flex-start; +} + +h1 { + font-family: 'Roboto Mono'; + color: #e6e6e6; + line-height: 1; + margin: 0; + margin-bottom: 1.5rem; +} + +p { + font-family: 'Roboto Mono'; + color: #e6e6e6; +} -- cgit v1.3.1