diff --git a/src/components/landing/layout/footer/footer.scss b/src/components/landing/layout/footer/footer.scss
new file mode 100644
index 000000000..9b77e0fc3
--- /dev/null
+++ b/src/components/landing/layout/footer/footer.scss
@@ -0,0 +1,3 @@
+footer {
+  color: rgba(255, 255, 255, .5);
+}
diff --git a/src/components/landing/layout/footer/footer.tsx b/src/components/landing/layout/footer/footer.tsx
index 1ca6c9d94..304a553f2 100644
--- a/src/components/landing/layout/footer/footer.tsx
+++ b/src/components/landing/layout/footer/footer.tsx
@@ -2,6 +2,7 @@ import React from "react";
 import {LanguagePicker} from "./language-picker";
 import {PoweredByLinks} from "./powered-by-links";
 import {SocialLink} from "./social-links";
+import "./footer.scss";
 
 export const Footer: React.FC = () => {
     return (
@@ -11,4 +12,4 @@ export const Footer: React.FC = () => {
             <SocialLink/>
         </footer>
     );
-}
\ No newline at end of file
+}