diff --git a/aleksis/core/static/style.scss b/aleksis/core/static/style.scss
index 1e4f6c0fc46a1e862465d9c99ac95f4020480311..2b30ab8960949c564ec8a48bc04f7dd1f4beb3b9 100644
--- a/aleksis/core/static/style.scss
+++ b/aleksis/core/static/style.scss
@@ -517,6 +517,12 @@ th.orderable.desc > a {
   font-weight: 700;
 }
 
+.alert h1 {
+  font-weight: 700;
+  font-size: 17px;
+  margin: auto;
+}
+
 .alert > p, .alert > div {
   margin: 10px;
   padding: 10px;
diff --git a/aleksis/core/templates/core/index.html b/aleksis/core/templates/core/index.html
index 6bbbab8ecfbe2768d12eb139fae110ac5cf62371..d1606fca9be70a4d4a98c1b6974f2b84f22948f5 100644
--- a/aleksis/core/templates/core/index.html
+++ b/aleksis/core/templates/core/index.html
@@ -30,7 +30,7 @@
           </a>
         </div>
 
-        <strong>{{ notification.title }}</strong>
+        <h1>{{ notification.title }}</h1>
         <p>{{ notification.description|linebreaks }}</p>
       </div>
     </div>
diff --git a/aleksis/core/templates/core/partials/announcements.html b/aleksis/core/templates/core/partials/announcements.html
index 2c74bead64e6c0f0f9da1753114d76357c2994e1..b0032d0dd6888f9ebcd7e6f881501178fc17e2a9 100644
--- a/aleksis/core/templates/core/partials/announcements.html
+++ b/aleksis/core/templates/core/partials/announcements.html
@@ -26,7 +26,7 @@
       {% endif %}
 
       <p>
-        <strong>{{ announcement.title }}</strong> <br/>
+        <h1>{{ announcement.title }}</h1>
         {{ announcement.description }}
       </p>