diff --git a/resources/views/errors/500.blade.php b/resources/views/errors/500.blade.php
index 8c6822767..d06ddbc57 100644
--- a/resources/views/errors/500.blade.php
+++ b/resources/views/errors/500.blade.php
@@ -2,14 +2,16 @@
 
 @section('content')
 
-    <div class="container">
-        <div class="card">
-            <h3 class="text-muted">{{ trans('errors.error_occurred') }}</h3>
+    <div class="container small py-xl">
+
+        <main class="card content-wrap auto-height">
             <div class="body">
-                <h5>{{ $message ?? 'An unknown error occurred' }}</h5>
+                <h3>{{ trans('errors.error_occurred') }}</h3>
+                <h5 class="mb-m">{{ $message ?? 'An unknown error occurred' }}</h5>
                 <p><a href="{{ url('/') }}" class="button outline">{{ trans('errors.return_home') }}</a></p>
             </div>
-        </div>
+        </main>
+
     </div>
 
 @stop
\ No newline at end of file