JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <title>webkit you bastard</title>
    <meta charset="UTF-8">
    <meta name="ROBOTS" content="ALL">
    <link rel="stylesheet" type="text/css" href="movies-Dateien/style.css">
</head>
<body class="en">
<div id="background">
    <div class="back" style="background-image:url(http://placekitten.com/g/2000/2000)"></div>
</div>
    <div id="wrapper">
        <div style="min-height: 730px;" class="container clearfix">
            <div class="container clearfix">
                <div style="left: auto;" class="clearfix" id="header">
                    <div id="headerBack">
                        <div class="back" style="background-image:url(http://placekitten.com/g/2000/2000)"></div>
                    </div>
                    <h1 style="position: absolute; z-index: 10">STATIC NAVIGATION AREA</h1>
                </div>
            </div>
            <div id="content" class="white clearfix">
                <div class="text">
                    <h1>Movies</h1>
                    <div class="videos">
                        <h3>content1</h3>
                        <div style="position: relative; width: 960px; height: 536px;" id="bike01_wrapper">
                            <object wmode="transparent" tabindex="0" name="bike01" id="bike01" bgcolor="#000000" type="application/x-shockwave-flash" height="100%" width="100%"></object>
                        </div>
                        <h3>content2</h3>
                        <div style="position: relative; width: 960px; height: 536px;" id="fourelements01_wrapper">
                            <object tabindex="0" name="fourelements01" id="fourelements01" bgcolor="#000000" type="application/x-shockwave-flash" height="100%" width="100%"></object>
                        </div>
                        <h3>content3</h3>
                        <div style="position: relative; width: 960px; height: 536px;"...

CSS

/*------------ GLOBAL -------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    outline: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    color: red;
}
ol, ul {
    list-style: none;
}
a {
    cursor: pointer;
    color: #75bde5;
}
a:hover {
    color: #da1b24;
}
.text a {
    text-decoration: none;
}
a.none {
    text-decoration: none;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
* + html .clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clear {
    clear: both;
}

/*------------ BACKGROUND -------------------------*/

#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#background div {
    min-width: 100%;
    min-height: 100%;
}

.back {
    background: url(../img/back_img1.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#bgControl {
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 30px;
    background: #da1b24;
    background: rgba(218, 27, 36, .5);
}

#bgControl ul {
    width: 100%;
  ...