diff --git a/rtfd/public/html/style/reset.css b/rtfd/public/html/style/reset.css
index 1a81f37..324d955 100644
--- a/rtfd/public/html/style/reset.css
+++ b/rtfd/public/html/style/reset.css
@@ -1,11 +1,25 @@
+*::after,
+*::before,
* {
box-sizing: border-box;
+}
+
+* {
+font: inherit;
/*
-margin: .5px;
-padding: .5em;
+margin: 0;
+padding: 0;
/**/
}
+html {
+color-scheme: dark light;
+}
+
+body {
+min-height: 100svh;
+}
+
h1, h2, h3, h4, h5, h6 {
text-wrap: balance;
}
@@ -16,3 +30,11 @@ p {
max-width: 64ch;
text-wrap: pretty;
}
+
+img,
+picture,
+svg,
+video {
+display: block;
+max-width: 100%;
+}