diff --git a/biscuit/core/static/css/style.css b/biscuit/core/static/css/style.css
index 8020abd7c0e5e457da7c0bc9d41e555e9b977d84..4e6b558cdf657b597b41d8b9d4ac226a6731823b 100644
--- a/biscuit/core/static/css/style.css
+++ b/biscuit/core/static/css/style.css
@@ -27,3 +27,7 @@ img.person-img {
         display: block;
         margin-top:0px;
 }
+
+.core-footer-link {
+  font-weight: bold;
+}
\ No newline at end of file
diff --git a/biscuit/core/templates/core/base.html b/biscuit/core/templates/core/base.html
index e2a2f9b3f76fe0f4a8f4bfb92572d71979b3e468..af8a213b56d520e299dfa6c49c868f32988a7b01 100644
--- a/biscuit/core/templates/core/base.html
+++ b/biscuit/core/templates/core/base.html
@@ -51,7 +51,7 @@
    <div class="row">
     <div class="col-xs-12 col-sm-12 col-md-12 mt-2 mt-sm-2 text-center text-dark">
      <p>
-      <a href="https://biscuit.edugit.org/">BiscuIT - The Free School Information System</a> © The BiscuIT Team @ <a href="https://www.teckids.org">Teckids e.V.</a>
+      <a class="core-footer-link text-dark" href="https://biscuit.edugit.org/">BiscuIT - The Free School Information System</a> © The BiscuIT Team @ <a class="core-footer-link text-dark" href="https://www.teckids.org">Teckids e.V.</a>
      </p>
     </div>
    </div>
diff --git a/biscuit/core/templates/footer-menu.html b/biscuit/core/templates/footer-menu.html
index f7b3700ebf3016e65bdac64ae33be8c97116c733..d6318a6a442c0b1cf976b9e65981f54da4b53414 100644
--- a/biscuit/core/templates/footer-menu.html
+++ b/biscuit/core/templates/footer-menu.html
@@ -11,7 +11,7 @@
     <h5>{{ item.name }}</h5>
     <ul class="list-unstyled quick-links">
      {% for menu in item.submenu %}
-      <li><a href="{{ menu.url }}">{% fa 'fa-angle-double-right' %} {{ menu.name }}</a></li>
+      <li><a class="core-footer-link text-dark" href="{{ menu.url }}">{% fa 'fa-angle-double-right' %} {{ menu.name }}</a></li>
      {% endfor %}
     </ul>
    </div>
@@ -25,7 +25,7 @@
    <h5>{% blocktrans %}Assorted{% endblocktrans %}</h5>
    <ul class="list-unstyled quick-links">
     {% for item in menu.list %}
-     <li><a href="{{ item.url }}">{% fa 'fa-angle-double-right' %} {{ item.name }}</a></li>
+     <li><a class="core-footer-link text-dark" href="{{ item.url }}">{% fa 'fa-angle-double-right' %} {{ item.name }}</a></li>
     {% endfor %}
    </ul>
   </div>