diff --git a/static/style.css b/static/style.css
index ec0cf294e1ecca02b62d76d9317e4dc029d372ce..292953c54429bbc4263aebac105e880551e6e2d0 100644
--- a/static/style.css
+++ b/static/style.css
@@ -1,2 +1,2 @@
-.videopreview li:nth-child(odd) { background: #f5f5f5; }
+.videopreview li:nth-child(even) { background: #f5f5f5; }
 .mejs-container { height: 80% !important; width: 100% !important; position: fixed !important; }
diff --git a/templates/index.html b/templates/index.html
index 96f2af64e1c7d04d4994622337e82a5b0b79f3bf..c0df98cc3d683ced3fa60f877e2052bc0c5cf77e 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -34,13 +34,11 @@
 				<div class="panel-heading">
 					<h1 class="panel-title">Neueste Videos</h1">
 				</div>
-				<div class="panel-body">
-					<ul class="list-group videopreview">
-						{% for i in latestvideos %}
-							{{ preview(i) }}
-						{% endfor %}
-					</ul>
-				</div>
+				<ul class="list-group videopreview">
+					{% for i in latestvideos %}
+						{{ preview(i) }}
+					{% endfor %}
+				</ul>
 			</div>
 		</div>
 	</div>