diff --git a/_includes/css/main.css b/_includes/css/main.css
index 9b869d3..38c1204 100644
--- a/_includes/css/main.css
+++ b/_includes/css/main.css
@@ -1,5 +1,8 @@
-html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
+html {
+ box-sizing: border-box;
+ scroll-behavior: smooth;
+}
/* ---------------------------*/
/* ----- Special Styles ----- */
@@ -52,6 +55,7 @@ pre {
.highlight { margin:20px 5%; }
/* ----- anchors ----- */
+nav > ul > li > a:focus { box-shadow: none; }
a:focus { box-shadow: 0 0 0 3px {{ site.colors.purple }}cc; }
/* ----- base elements ----- */
@@ -365,6 +369,13 @@ nav ul li:hover, nav ul li.active {
}
}
+/* reduced motion */
+@media (prefers-reduced-motion: reduce) {
+ html {
+ scroll-behavior: auto;
+ }
+}
+
.intro-text {
margin: 0 0 10px;
font-family: "Segoe UI","Helvetica Neue","Helvetica",Arial,sans-serif;
diff --git a/_posts/2000-01-05-install.md b/_posts/2000-01-05-install.md
index b8c1db3..73f82f2 100644
--- a/_posts/2000-01-05-install.md
+++ b/_posts/2000-01-05-install.md
@@ -37,7 +37,7 @@ If you use Windows and have [Chocolatey](https://chocolatey.org) installed (than
choco install vscodium
```
-### Install with Scoop (Windows)
+### Install with Scoop (Windows)
If you use Windows and have [Scoop](https://scoop.sh/) installed:
```bash
scoop bucket add extras
diff --git a/index.html b/index.html
index d8da5fd..5a6f765 100755
--- a/index.html
+++ b/index.html
@@ -58,6 +58,5 @@