diff --git a/assets/sass/elements/_html.scss b/assets/sass/elements/_html.scss
index 3dca4193..0fcec110 100644
--- a/assets/sass/elements/_html.scss
+++ b/assets/sass/elements/_html.scss
@@ -2,7 +2,7 @@ html {
background-color: $background-color;
color: $text-color;
font-family: $body-font-family;
- font-size: calc(0.85vmin + 13px);
+ font-size: calc(1vmin + 13px);
font-style: normal;
font-weight: 300;
line-height: 1.4;
@@ -12,3 +12,13 @@ html {
color: $text-color-dark;
}
}
+
+_:default:not(:root:root),
+html {
+ animation: webkitfix 1s forwards infinite;
+}
+@-webkit-keyframes webkitfix {
+ 100% {
+ z-index: auto;
+ }
+}