@import url('https://fonts.googleapis.com/css?family=Chicle');
#schnipsel {
    width: 300px;
    height: 200px;
    left: 100px;
    top: 400px;
    position: absolute;
    background-color: red;
    color: white;
    text-align: center;
}

#schnipsel2 {
    width: 300px;
    height: 300px;
    position: absolute;
    background-color: pink;
}

#nico {
    background-image: url("../bilder/Desert.jpg");
    background-clip: content-box;
}

#schnipsel3 {
    width: 250px;
    height: 300px;
    position: absolute;
    background-color: black;
    color: pink;
    left: 500px;
}

#schnipsel4 {
    width: 220px;
    height: 220px;
    position: absolute;
    background-color: blue;
    color: white;
    left: 500px;
    top: 500px;
    border-radius: 50%;
    text-align: center;
}

#fortnite {
    height: 100%;
    padding: 50%;
}

/*Auf normalen Computern ab 769 Pixel Breite können drei Videos nebeneinander angezeigt werden*/

.videodiv {
    font-family: Arial, Helvetica, sans-serif;
    width: 30%;
    display: inline-block;
    background: #3d0000;
    border: 2px solid #000000;
    text-align: center;
    margin-bottom: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-sizing: border-box;
    margin-right: 15px;
}

/*Hier sind die Styles für iPhones. Die sind im Breich bis 480 Pixel Breite*/

@media only screen and (max-width: 480px) {
    .videodiv {
        font-family: Arial, Helvetica, sans-serif;
        width: 100%;
        /*Die Video Divs sollen die ganze Breite einnehmen*/
        display: inline-block;
        background: #3d0000;
        border: 2px solid #000000;
        text-align: center;
        margin-bottom: 20px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        box-sizing: border-box;
    }
}

/*Hier sind die Styles für iPads. Die sind im Breich von 481 bis 768 Pixel Breite*/

@media only screen and (min-width: 481px) and (max-width:768px) {
    .videodiv {
        font-family: Arial, Helvetica, sans-serif;
        width: 45%;
        /*Die Video Divs sollen etwas weniger als die Hälfte der Breite haben. So passen zwei nebeneinander*/
        display: inline-block;
        background: #3d0000;
        border: 2px solid #000000;
        text-align: center;
        margin-bottom: 20px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        box-sizing: border-box;
    }
}

.videodiv:hover {
    background: #000000;
    border: 2px solid #33ff00;
}

html {
    padding: 0px;
    margin: 0px;
    background: url("../bilder/grauraum.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.titel {
    width: 100%;
    font-family: 'Chicle', cursive;
    font-size: 45px;
    color: #ffffff;
    background: #6b6b6b;
    background: -moz-linear-gradient(left, #6b6b6b 0%, #242122 55%, #1a0f11 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #6b6b6b), color-stop(55%, #242122), color-stop(100%, #1a0f11));
    background: -webkit-linear-gradient(left, #6b6b6b 0%, #242122 55%, #1a0f11 100%);
    background: -o-linear-gradient(left, #6b6b6b 0%, #242122 55%, #1a0f11 100%);
    background: -ms-linear-gradient(left, #6b6b6b 0%, #242122 55%, #1a0f11 100%);
    background: linear-gradient(to right, #6b6b6b 0%, #242122 55%, #1a0f11 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b6b6b', endColorstr='#1a0f11', GradientType=1);
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 10px;
    vertical-align: middle;
    border-bottom: 4px solid #1a0f11;
    box-sizing: border-box;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    /* ratio 16x9 */
    height: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div h2 {
    height: 45px;
    overflow: hidden;
    font-size: 15px;
    color: #ffffff;
    display: inline-block;
}

#wrapper {
    width: 100%;
    text-align: center;
}