diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index 087cdad..7d727cd 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -61,9 +61,16 @@ const { title, description } = Astro.props;
}
.card {
- border: 0.125rem dashed var(--bg-sec);
border-radius: var(--bdrs);
padding: 0.625rem;
+
+ &.card-dashed {
+ border: 0.125rem dashed var(--bg-sec);
+ }
+
+ &.card-elevated {
+ background: var(--accent-bg);
+ }
}
hgroup > * {
@@ -87,6 +94,10 @@ const { title, description } = Astro.props;
font-size: 1.1rem;
}
+ h1, h2, h3, h4, h5, h6 {
+ margin: 0;
+ }
+
a, .link {
color: var(--accent-fg);
text-decoration: none;
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 432f308..e1a8718 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -23,7 +23,7 @@ const description =
-
+