diff options
Diffstat (limited to 'src/scss')
| -rw-r--r-- | src/scss/style.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/scss/style.scss b/src/scss/style.scss index cfa646b..1b6e93d 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -1,8 +1,12 @@ @use "reset"; +$background: hsl(15, 10%, 5%); + body { font-size: 22px; font-family: sans-serif; + background: $background; + color: white; } h1 { @@ -59,7 +63,7 @@ section { top: 60%; transform: translate(-50%, -50%); gap: 1rem; - background: hsl(15, 10%, 5%); + background: $background; color: white; max-width: 800px; margin: auto; |
