diff --git a/src/App.css b/src/App.css
index e85214d..03d50cb 100644
--- a/src/App.css
+++ b/src/App.css
@@ -54,6 +54,30 @@
margin: 1em;
}
+.fakemusicbutton {
+ background-color: #272525;
+ color: pink;
+ font-family: Roboto, sans-serif;
+ font-weight: 500;
+ font-size: 14px;
+ padding: 10px 30px;
+ box-shadow: none;
+ border-radius: 5px;
+ transition: 100ms;
+ transform: translateY(0);
+ display: flex;
+ flex-wrap: wrap;
+ flex-direction: row;
+ align-items: center;
+ border: none;
+ margin: 1em;
+}
+
+.fakemusicbutton:hover {
+ background-color: transparent;
+ color: transparent;
+}
+
.musicdiv {
background-color: rgba(0, 0, 0, 0.731);
position: fixed;
diff --git a/src/App.tsx b/src/App.tsx
index 6b27946..89fa3ba 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -143,121 +143,124 @@ function App() {