diff --git a/_layouts/person.html b/_layouts/person.html
index e9ce1150a451b9e337010ed0a6242e28051f6c25..760d86201a4b3dd7aa34d8a55aa6bbdde5962e8d 100644
--- a/_layouts/person.html
+++ b/_layouts/person.html
@@ -2,14 +2,24 @@
 layout: default
 ---
 
-<div class="page">
-  <h1 class="page-title">{{ page.fullname }}</h1>
-  {% if page.fulltitle %}<h2>{{ page.fulltitle }}</h2>{% endif %}
-  <h3>
-    <a href="https://kwarc.info/{{ page.account }}/publications.html">Pulibcations</a>
-    {% if page.cv %}&nbsp;<a href="/{{page.cv}}">Curriculum Vitae</a>{% endif %}
-  </h3>
-  
-  <img src="/{{page.pic}}" width="300"/>
-  {{ content }}
-</div>
+
+<div class="row">
+  <div class="col s12 m5 right">
+    <div class="card">
+      <div class="card-image">
+        <img src="/{{page.pic}}" width="300"/>
+      </div>
+      <div class="card-content">
+        <span class="card-title">{{ page.fullname }}</span>
+        {% if page.fulltitle %}{{ page.fulltitle }}{% endif %}
+      </div>
+      <div class="card-action">
+        <a href="https://kwarc.info/{{ page.account }}/publications.html">Publications</a>
+        {% if page.cv %}&nbsp;<a href="/{{page.cv}}">Curriculum Vitae</a>{% endif %}
+      </div>
+    </div>
+  </div>
+  <p>
+    {{content}}
+  </p>
+</div>
\ No newline at end of file
diff --git a/people/mkohlhase.md b/people/mkohlhase.md
index 1690fd54a8dc6ae554e2bca24390f9d42d79a4aa..9d593ae294bf4e67d68c57445ae117913f298a32 100644
--- a/people/mkohlhase.md
+++ b/people/mkohlhase.md
@@ -1,6 +1,7 @@
 ---
 layout: person
 menu_title: Michael Kohlhase
+title: Michael Kohlhase
 menu_order: 1
 fullname: Prof. Dr. Michael Kohlhase
 fulltitle: Professur für Wissensrepräsentation und -verarbeitung
diff --git a/public/css/main.css b/public/css/main.css
index d5cd2453f9abffeaecc414859679dd6e605ad398..4c3aed86c8c2f7b04303fbb7ce09346436a3e83b 100644
--- a/public/css/main.css
+++ b/public/css/main.css
@@ -10,7 +10,7 @@ header, main, .page-footer {
   }
 }
 
-#body {
+p {
   font-size: 1.25rem;
   font-weight: 300;
 }