diff --git a/client/src/common/styles/main.sass b/client/src/common/styles/main.sass
index ddde40d..dd00606 100644
--- a/client/src/common/styles/main.sass
+++ b/client/src/common/styles/main.sass
@@ -416,6 +416,7 @@ h1, h2, h3
     justify-content: center
     align-items: center
     cursor: pointer
+    color: white
     transition: all 0.2s ease
     
     &:hover
diff --git a/client/src/components/SongSubmissionScreen.jsx b/client/src/components/SongSubmissionScreen.jsx
index 08c13db..052618d 100644
--- a/client/src/components/SongSubmissionScreen.jsx
+++ b/client/src/components/SongSubmissionScreen.jsx
@@ -352,11 +352,15 @@ const SongSubmissionScreen = () => {
         
         {canSubmitMoreSongs && !isFormVisible && !isReady && (
           <button
-            className="add-song-btn"
+            className="btn add-song-btn"
             onClick={() => setIsFormVisible(true)}
           >
-            <FontAwesomeIcon icon={faPlus} />
+            <FontAwesomeIcon icon={faPlus} className="icon-margin" />
             <span>Lied hinzufügen</span>
+            <span className="pixel-corner tl"></span>
+            <span className="pixel-corner tr"></span>
+            <span className="pixel-corner bl"></span>
+            <span className="pixel-corner br"></span>
           </button>
         )}
       </div>