diff --git a/James Things/foundry patches/loginmusic.sh b/James Things/foundry patches/loginmusic.sh
index 5c581ce..6529748 100644
--- a/James Things/foundry patches/loginmusic.sh
+++ b/James Things/foundry patches/loginmusic.sh
@@ -10,7 +10,7 @@ videoid="ZjQZxqTipHM"
iframe=""
# The final string.
-Video="
$iframe
"
+Video="$iframe
"
# Inject that bad boy into the foundry thing. Might break in future updates (May only need the line changed)
sed -i -e "69i $Video" /home/foundry/resources/app/templates/setup/join-game.html
diff --git a/James Things/foundry patches/loginpagecss.sh b/James Things/foundry patches/loginpagecss.sh
index aa22a01..c119a6c 100644
--- a/James Things/foundry patches/loginpagecss.sh
+++ b/James Things/foundry patches/loginpagecss.sh
@@ -11,8 +11,11 @@ sed -i -e 's+url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1H
sed -i -e 's+rgb(150, 12, 16)+rgb(0, 150, 136)+g' ./foundry_login.css
sed -i -e 's+rgb(228, 9, 19)+rgb(0, 188, 170)+g' ./foundry_login.css
-# Make the Width responsive and add a sick blur effect
-sed -i -e 's+width: 400px !important;+width: 90% !important;backdrop-filter: blur(7px) !important;+g' ./foundry_login.css
+# Make the Width responsive
+sed -i -e 's+width: 400px !important;+width: 90% !important;+g' ./foundry_login.css
+
+# Add blur to app class... this COULD potentially break things
+echo '#join-game .app {backdrop-filter: blur(7px) !important;}' >> /home/foundry/resources/app/public/css/style.css
# Append to the Foundry Style.css
cat ./foundry_login.css >> /home/foundry/resources/app/public/css/style.css