aboutsummaryrefslogtreecommitdiff
path: root/src/scss/style.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/scss/style.scss')
-rw-r--r--src/scss/style.scss40
1 files changed, 35 insertions, 5 deletions
diff --git a/src/scss/style.scss b/src/scss/style.scss
index 42f5727..060fc28 100644
--- a/src/scss/style.scss
+++ b/src/scss/style.scss
@@ -1,28 +1,33 @@
@use "reset";
body {
- font-size: 24px;
+ font-size: 22px;
font-family: sans-serif;
}
h1 {
- font-size: 3rem;
+ font-size: 3em;
font-weight: bold;
margin-bottom: 1rem;
font-family: serif;
}
h2 {
- font-size: 2rem;
+ font-size: 2em;
font-weight: bold;
+ margin-bottom: 1rem;
}
h3 {
- font-size: 1.5rem;
+ font-size: 1.5em;
}
h4 {
- font-size: 1.25rem;
+ font-size: 1.25em;
+}
+
+p {
+ line-height: 1.15em;
}
header {
@@ -40,3 +45,28 @@ header {
gap: 1rem;
font-size: 1.75rem;
}
+
+article {
+ min-height: 100vh;
+}
+
+.content {
+ position: relative;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ background: black;
+ color: white;
+ max-width: 800px;
+ margin: auto;
+ padding: 2rem;
+
+ &__header {
+ text-align: center;
+ margin-bottom: 2rem;
+
+ &:last-child {
+ margin-bottom: 0;
+ }
+ }
+}