diff --git a/frontend/src/css/Footer.css b/frontend/src/css/Footer.css
new file mode 100644
index 0000000000000000000000000000000000000000..fecedb45dfea6b5b202d42576e4098e6fb48c54a
--- /dev/null
+++ b/frontend/src/css/Footer.css
@@ -0,0 +1,23 @@
+/* Footer.css */
+@import "~@fortawesome/fontawesome-free/css/all.css";
+
+footer {
+    display: flex;
+    justify-content: center;
+    padding: 25px 40px;
+    background-color: #373737;
+    color: #fff;
+    box-shadow: 0 -2px 4px rgba(0,0,0,0.1); /* Shadow appears at the top of the footer */
+}
+
+footer a {
+    font-size: 16px;
+    color: #fff;
+    text-decoration: none;
+    margin: 0 15px;
+}
+
+footer p {
+    font-size: 16px;
+    margin: 0 15px;
+}