diff --git a/website/src/css/blog.css b/website/src/css/blog.css
index 5d2b394781..30d49f836a 100644
--- a/website/src/css/blog.css
+++ b/website/src/css/blog.css
@@ -74,3 +74,16 @@ h3::before {
visibility: hidden;
pointer-events: none;
}
+
+@media screen and (max-width: 1024px) {
+ h1::before,
+ h2::before,
+ h3::before {
+ display: block;
+ content: " ";
+ margin-top: -125px;
+ height: 125px;
+ visibility: hidden;
+ pointer-events: none;
+ }
+}
\ No newline at end of file
diff --git a/website/src/css/style.css b/website/src/css/style.css
new file mode 100644
index 0000000000..a11ae709d1
--- /dev/null
+++ b/website/src/css/style.css
@@ -0,0 +1,34 @@
+html {
+ scroll-behavior: smooth;
+}
+
+h1::before,
+h2::before,
+h3::before
+#comparison::before {
+ display: block;
+ content: " ";
+ margin-top: -80px;
+ height: 100px;
+ visibility: hidden;
+ pointer-events: none;
+}
+
+@media screen and (max-width: 1024px) {
+ h1::before,
+ h2::before,
+ h3::before
+ #comparison::before {
+ display: block;
+ content: " ";
+ margin-top: -125px;
+ height: 205px;
+ visibility: hidden;
+ pointer-events: none;
+ }
+}
+
+.nav-button-active{
+ background-color: #00C8FB;
+ color: #fff;
+}
\ No newline at end of file
diff --git a/website/src/index.html b/website/src/index.html
index e800eda66a..a36b52d94a 100644
--- a/website/src/index.html
+++ b/website/src/index.html
@@ -19,6 +19,8 @@
+
+
@@ -28,9 +30,17 @@