diff --git a/templates/frontpage/blocks/claim.html b/templates/frontpage/blocks/claim.html
index d0d30e2e661dab8ece55665ab79be09d1416947d..d6da65a480852429fdfc14a343b56ef621d61c48 100644
--- a/templates/frontpage/blocks/claim.html
+++ b/templates/frontpage/blocks/claim.html
@@ -1,10 +1,10 @@
-<div class="container">
-    <section class="columns is-centered is-half">
+<section class="section">
+    <div class="columns is-centered is-half">
         <h1 class="title is-1">Eine verstehbare, digitale Welt</h1>
-    </section>
-    <section class="columns">
+    </div>
+    <div class="columns">
         <div class="column"><div class="box is-shadowless"><h1 class="title is-3">Technik hinterfragen</h1><p>TBA</p></div></div>
         <div class="column"><div class="box is-shadowless"><h1 class="title is-3">Digitale Mündigkeit</h1><p>TBA</p></div></div>
         <div class="column"><div class="box is-shadowless"><h1 class="title is-3">Mitgestalten statt konsumieren</h1><p>TBA</p></div></div>
-    </section>
-</div>
+    </div>
+</section>
\ No newline at end of file
diff --git a/templates/frontpage/blocks/news.html b/templates/frontpage/blocks/news.html
index 95060a8d78469b3426c68a1b22149b9e0e38d2db..25704168affa7c3a5aec806e4757c01fbbb14ff0 100644
--- a/templates/frontpage/blocks/news.html
+++ b/templates/frontpage/blocks/news.html
@@ -1,8 +1,8 @@
-<div class="container">
-  <section class="columns is-centered is-half">
+<section class="section">
+  <div class="columns is-centered is-half">
     <h1 class="title is-1">Neuigkeiten</h1>
-  </section>
-  <section class="columns is-same-height">
+  </div>
+  <div class="columns is-same-height">
     <div class="column">
       <div class="card is-shadowless">
         <div class="card-image">
@@ -85,6 +85,5 @@
         </div>
       </div>
     </div>
-  </section>
-  <br />
-</div>
\ No newline at end of file
+  </div>
+</section>
diff --git a/templates/frontpage/blocks/projects.html b/templates/frontpage/blocks/projects.html
index 42fe6eb1c57731b44c44d631a1df41bde5f9f68a..b54a44135b086a58b9c171e493e2b5eee6f91224 100644
--- a/templates/frontpage/blocks/projects.html
+++ b/templates/frontpage/blocks/projects.html
@@ -1,8 +1,8 @@
-<div class="container">
-  <section class="columns is-centered is-half">
+<section class="section">
+  <div class="columns is-centered is-half">
     <h1 class="title is-1">Unsere Projekte</h1>
-  </section>
-  <section class="columns">
+  </div>
+  <div class="columns">
     <div class="column">
       <div class="card">
         <figure class="image is-4by3">
@@ -74,6 +74,5 @@
         </div>
       </div>
     </div>
-  </section>
-  <br />
-</div>
+  </div>
+</section>
diff --git a/templates/index.html b/templates/index.html
index 946f249fe2543954e28f052996cd68134b418147..9fef20e7e401f58341092811733b409f657b5e97 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,8 +1,10 @@
 {% extends "base.html" %}
 
 {% block main %}
-  {% include "frontpage/blocks/claim.html" %}
-  {% include "frontpage/blocks/news.html" %}
-  {% include "frontpage/blocks/projects.html" %}
-  {% include "frontpage/blocks/events.html" %}
+  <div class="container">
+    {% include "frontpage/blocks/claim.html" %}
+    {% include "frontpage/blocks/news.html" %}
+    {% include "frontpage/blocks/projects.html" %}
+    {% include "frontpage/blocks/events.html" %}
+  </div>
 {% endblock %}