diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8572bd5..e4cb320 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
+- Remove top/bottom margin from the first/last element in `
```
diff --git a/sass/_typography.scss b/sass/_typography.scss
index 5463bcf..f2413b2 100644
--- a/sass/_typography.scss
+++ b/sass/_typography.scss
@@ -215,6 +215,14 @@ aside {
margin-inline-start: 0;
width: 100%;
}
+
+ :first-child {
+ margin-block-start: 0;
+ }
+
+ :last-child {
+ margin-block-end: 0;
+ }
}
details {