diff --git a/registration-system/index.php b/registration-system/index.php
index 3923ada765694bc997f664efdda46984e333a98c..dd04c8d4386a5d77bc6808af0d215fd11b971b04 100644
--- a/registration-system/index.php
+++ b/registration-system/index.php
@@ -248,9 +248,10 @@ function index_show_formular($fid, $bid = NULL, $bachelor = NULL){
 	if (!isset($_GET['noscript']))
 	{
 		echo '</noscript>';
+		echo '<h2>Anmeldeformular</h2>';
 		echo '<div style="margin:0 auto; position:relative; width:900px; height:500px"><div id="storybox"></div>';
 		echo '<div style="position:absolute; left:20px; bottom:20px; background:#f0f; cursor:pointer" onclick="story.next(true)">ZUR&Uuml;CK</div></div>';
-		echo '<div style="text-align:center;font-weight:bold"><a style="float:none;margin:0 auto;" href="'.$_SERVER['REQUEST_URI'].'&noscript">Seite funktioniert nicht?</a></div>';
+		echo '<div style="text-align:center;font-weight:bold"><a style="float:none;margin:0 auto;" href="'.$_SERVER['REQUEST_URI'].'&noscript">Seite funktioniert nicht / zu bunt?</a></div>';
 	}
 }
 
@@ -352,6 +353,8 @@ function index_show_fahrtHeader($fahrt){
 function index_show_signupTable($fid){
     global $index_db, $config_studitypen;
 
+echo '<h2>Angemeldet</h2>';
+
     $data = $index_db->select('bachelor',array("pseudo","antyp","abtyp","anday","abday","comment","studityp"),
         array("AND" => array(
             'fahrt_id' => (int) $fid,
diff --git a/registration-system/view/default_index.php b/registration-system/view/default_index.php
index 05f13a3f03fb01c92e438f90d2ee53549116ded7..0ff934ed8c1ede608eb4faabb09b00b9facc6e73 100644
--- a/registration-system/view/default_index.php
+++ b/registration-system/view/default_index.php
@@ -12,6 +12,7 @@
     <script type="text/javascript" src="view/js/story.js"></script>
 </head>
 <body>
+<div class="shadowbox">
 <div id="headerbox">
     <div class="headerboxshade"><h1>Fachschaftsfahrt</h1></div>
 	<div class="headerboxshade"><h2>Informatik</h2></div>
@@ -28,5 +29,6 @@
 <div id="footerbox">&copy; 2014 Fachschaftsinitiative Informatik der Humboldt Universität zu Berlin.</div>
 <img src="view/graphics/studityp_5.gif" style="position: fixed;bottom: 5px;left:0px" />
 
+</div>
 </body>
 </html>
diff --git a/registration-system/view/style.css b/registration-system/view/style.css
index 9c55eb172ee4b68edbf116ad2db5b49e4969a66b..83d43060ca839182df41c3ccaf58772d3c302b28 100644
--- a/registration-system/view/style.css
+++ b/registration-system/view/style.css
@@ -12,13 +12,20 @@ Neon Orange: #FF4105
 Neon Purple: #993CF3
 */
 body {
-  /*background-color:#FF00FF;*/
-  background: url(http://rasputin.de/CF/Jugend/p/anibg.gif);
+  background: #cfdee7;
   font-family: sans-serif;
   text-align: justify;
   font-size: 1em;
 }
 
+.shadowbox {
+	-webkit-box-shadow: 7px 7px 20px 0px rgba(50, 50, 50, 0.75);
+	-moz-box-shadow:    7px 7px 20px 0px rgba(50, 50, 50, 0.75);
+	box-shadow:         7px 7px 20px 0px rgba(50, 50, 50, 0.75);
+	width:1000px;
+	margin: 0 auto;
+}
+
 div#headerbox, div#menubox, div#mainbox, div#footerbox {
   margin: 0 auto;
   width: 1000px;
@@ -35,6 +42,9 @@ div#headerbox {
 
 div#menubox {
   border-bottom: 1px solid black;
+  -webkit-box-shadow: inset 0px 6px 6px 0px rgba(150, 150, 150, 0.75);
+	-moz-box-shadow:    inset 0px 6px 6px 0px rgba(150, 150, 150, 0.75);
+	box-shadow:         inset 0px 6px 6px 0px rgba(150, 150, 150, 0.75);
   /*height: 40px;*/
 }