diff --git a/_site/assets/buttons/88x31_web.svg b/_site/assets/buttons/88x31_web.svg
deleted file mode 100644
index f541913..0000000
--- a/_site/assets/buttons/88x31_web.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/_site/assets/buttons/friends/kyropy.svg b/_site/assets/buttons/friends/kyropy.svg
index c7dc5af..cf1037d 100644
--- a/_site/assets/buttons/friends/kyropy.svg
+++ b/_site/assets/buttons/friends/kyropy.svg
@@ -2,13 +2,13 @@
-
+
-
+
@@ -18,6 +18,6 @@
-
+
diff --git a/_site/assets/buttons/friends/outofshape.gif b/_site/assets/buttons/friends/outofshape.gif
index f0d1fa3..7c13af1 100644
Binary files a/_site/assets/buttons/friends/outofshape.gif and b/_site/assets/buttons/friends/outofshape.gif differ
diff --git a/_site/assets/favicon.png b/_site/assets/favicon.png
deleted file mode 100644
index 1062bec..0000000
Binary files a/_site/assets/favicon.png and /dev/null differ
diff --git a/_site/assets/synth grid bg.png b/_site/assets/synth grid bg.png
new file mode 100644
index 0000000..a182036
Binary files /dev/null and b/_site/assets/synth grid bg.png differ
diff --git a/_site/assets/synth-download.webp b/_site/assets/synth-download.webp
deleted file mode 100644
index 98d0019..0000000
Binary files a/_site/assets/synth-download.webp and /dev/null differ
diff --git a/_site/assets/synth.download/favicon.png b/_site/assets/synth.download/favicon.png
deleted file mode 100644
index 26859fd..0000000
Binary files a/_site/assets/synth.download/favicon.png and /dev/null differ
diff --git a/_site/assets/synth.download/logo_old.svg b/_site/assets/synth.download/logo_old.svg
deleted file mode 100644
index d0f34bb..0000000
--- a/_site/assets/synth.download/logo_old.svg
+++ /dev/null
@@ -1,417 +0,0 @@
-
-
-
-
diff --git a/_site/assets/synth.download/sharkey/grid_bg.png b/_site/assets/synth.download/sharkey/grid_bg.png
new file mode 100644
index 0000000..a182036
Binary files /dev/null and b/_site/assets/synth.download/sharkey/grid_bg.png differ
diff --git a/_site/assets/synth.download/sharkey/sharkey.css b/_site/assets/synth.download/sharkey/sharkey.css
new file mode 100644
index 0000000..4b244f2
--- /dev/null
+++ b/_site/assets/synth.download/sharkey/sharkey.css
@@ -0,0 +1,107 @@
+/* this SHOULD just be the landing page, and shouldn't effect anything else */
+#sharkey_app [class^="visitor-root-"] {
+[class^="visitor-main-"] [class^="visitor-content-"] {
+ /* multiple elements i'd prefer hidden
+ * shape1 and shape2 refer to the weird shape things on the left
+ * pages-welcome-timeline-root refers to the scrolling and very buggy timeline on the right */
+ [class^="pages-welcome-entrance-a-shape1-"], [class^="pages-welcome-entrance-a-shape2-"], [class^="pages-welcome-timeline-root-"] {
+ display: none;
+ }
+
+ /* color text appropriately */
+ [class^="pages-welcome-entrance-a-logoWrapper-"] [class^="pages-welcome-entrance-a-poweredBy-"] {
+ color: var(--MI_THEME-fg);
+ }
+
+ /* re-centers the background due to shape1/2 being removed
+ * as well as also replacing it with one that allows us to animate it with a pattern */
+ [class^="MkFeaturedPhotos-root-"] {
+ background-image: url("https://booping.s3.us-east-005.backblazeb2.com/assets/synth+grid+bg.png") !important;
+ background-repeat: repeat;
+ background-size: auto;
+ top: 0 !important;
+ left: 0 !important;
+ width: 100% !important;
+ height: 100% !important;
+ opacity: .8;
+ animation: animatebg 100s linear infinite;
+ }
+
+ /* the main instance info page thing */
+ [class^="pages-welcome-entrance-a-contents-"] {
+ margin-left: auto !important;
+ margin-right: auto !important;
+ padding: 130px 0;
+
+ /* blurred background effect behind instance information */
+ [class^="MkVisitorDashboard-root-"]::before {
+ position: absolute;
+ content: '';
+ top: .5rem;
+ left: -1.7rem;
+ width: 34rem;
+ height: 132.4rem;
+ background: var(--MI_THEME-acrylicPanel);
+ -webkit-backdrop-filter: var(--MI-blur, blur(15px));
+ backdrop-filter: var(--MI-blur, blur(15px));
+ border-radius: var(--MI-radius-ellipse);
+ transition: padding .2s;
+ }
+
+ /* instance stats - i don't like these being displayed right on the front page
+ * disabled, nice to keep probably
+ * [class^="MkVisitorDashboard-stats-"] {
+ * display: none !important;
+ } */
+
+ /* expand the timeline widget view */
+ [class^="MkVisitorDashboard-tl-"] {
+ [class^="MkVisitorDashboard-tlBody-"] {
+ height: 50rem !important;
+ }
+ }
+ }
+
+ /* federation scrolling bar thingy */
+ [class^="pages-welcome-entrance-a-federation-"] {
+ bottom: unset !important;
+ top: 16px !important;
+ z-index: 50 !important;
+ }
+}
+
+/* sidebar */
+[class^="visitor-side-"] {
+ background: linear-gradient(var(--MI_THEME-bg), var(--MI_THEME-accent));
+
+ /* banner image */
+ [class^="visitor-banner-"] {
+ background-image: url("https://booping.s3.us-east-005.backblazeb2.com/assets/synth+grid+bg.png") !important;
+ background-repeat: repeat;
+ background-size: auto;
+ top: 0 !important;
+ left: 0 !important;
+ width: 100% !important;
+ height: 100% !important;
+ opacity: .8;
+ animation: animatebg 100s linear infinite;
+ }
+}
+}
+
+/* animation for the background on the landing page */
+@keyframes animatebg {
+ 0% { background-position: 0px 0px; }
+ 100% { background-position: -960px -960px; }
+}
+
+/* disable the background animation if browser doesn't want animations */
+@media (prefers-reduced-motion) {
+ #sharkey_app [class^="visitor-root-"] {
+ [class^="visitor-main-"] [class^="visitor-content-"] {
+ [class^="MkFeaturedPhotos-root-"] {
+ animation: unset !important;
+ }
+ }
+ }
+}
diff --git a/_site/assets/synth.download/sharkey/sharkey.min.css b/_site/assets/synth.download/sharkey/sharkey.min.css
new file mode 100644
index 0000000..1e8482f
--- /dev/null
+++ b/_site/assets/synth.download/sharkey/sharkey.min.css
@@ -0,0 +1 @@
+#sharkey_app [class^="visitor-root-"] {[class^="visitor-main-"] [class^="visitor-content-"] {[class^="pages-welcome-entrance-a-shape1-"], [class^="pages-welcome-entrance-a-shape2-"], [class^="pages-welcome-timeline-root-"] {display: none;}[class^="pages-welcome-entrance-a-logoWrapper-"] [class^="pages-welcome-entrance-a-poweredBy-"] {color: var(--MI_THEME-fg);}[class^="MkFeaturedPhotos-root-"] {background-image: url("https://booping.s3.us-east-005.backblazeb2.com/assets/synth+grid+bg.png") !important;background-repeat: repeat;background-size: auto;top: 0 !important;left: 0 !important;width: 100% !important;height: 100% !important;opacity: .8;animation: animatebg 100s linear infinite;}[class^="pages-welcome-entrance-a-contents-"] {margin-left: auto !important;margin-right: auto !important;padding: 130px 0;[class^="MkVisitorDashboard-root-"]::before {position: absolute;content: '';top: .5rem;left: -1.7rem;width: 34rem;height: 132.4rem;background: var(--MI_THEME-acrylicPanel);-webkit-backdrop-filter: var(--MI-blur, blur(15px));backdrop-filter: var(--MI-blur, blur(15px));border-radius: var(--MI-radius-ellipse);transition: padding .2s;}[class^="MkVisitorDashboard-tl-"] {[class^="MkVisitorDashboard-tlBody-"] {height: 50rem !important;}}}[class^="pages-welcome-entrance-a-federation-"] {bottom: unset !important;top: 16px !important;z-index: 50 !important;}}[class^="visitor-side-"] {background: linear-gradient(var(--MI_THEME-bg), var(--MI_THEME-accent));[class^="visitor-banner-"] {background-image: url("https://booping.s3.us-east-005.backblazeb2.com/assets/synth+grid+bg.png") !important;background-repeat: repeat;background-size: auto;top: 0 !important;left: 0 !important;width: 100% !important;height: 100% !important;opacity: .8;animation: animatebg 100s linear infinite;}}}@keyframes animatebg {0% {background-position: 0px 0px;}100% {background-position: -960px -960px;}}@media (prefers-reduced-motion) {#sharkey_app [class^="visitor-root-"] {[class^="visitor-main-"] [class^="visitor-content-"] {[class^="MkFeaturedPhotos-root-"] {animation: unset !important;}}}}
diff --git a/_site/assets/synth.download/synth_64.png b/_site/assets/synth.download/synth_64.png
deleted file mode 100644
index 1062bec..0000000
Binary files a/_site/assets/synth.download/synth_64.png and /dev/null differ