From 74e9bdd2055579560a19666db12a7e1fa42b8bfc Mon Sep 17 00:00:00 2001
From: Tiago Brito <69848652+britotiago03@users.noreply.github.com>
Date: Fri, 10 May 2024 05:11:47 +0200
Subject: [PATCH] Implemented Footer.css

---
 frontend/src/css/Footer.css | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 frontend/src/css/Footer.css

diff --git a/frontend/src/css/Footer.css b/frontend/src/css/Footer.css
new file mode 100644
index 0000000..fecedb4
--- /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;
+}
-- 
GitLab