@import url('https://fonts.googleapis.com/css2?family=Ysabeau&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace+SC&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font: normal 16px sans-serif;
    color: #ffffff;
    background-color:#2A2B2E;
    font-family: 'Roboto';
    text-shadow: 0 0 black;
}

.DickeHupen2 {
    font-family: 'Bruno Ace SC';
    background: transparent; 
    border: none; 
    font-weight: bold; 
    color: red;
    font-size: large;
    text-shadow: 0 0 5px black;
}

.twitchplayer {
    position: absolute;
    right: 50px;
}

.vorstellung {
    padding: 100px 100px;
    text-align: center;
}

.partner {
    background-color: dimgray;
    padding: 50px 50px;
    text-align: center;
}

.hds {
    background-color: rgb(189, 128, 37);
    padding: 50px 50px;
    text-align: center;
}

.footer1 {
    background-color: rgb(0, 0, 0);
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer2 {
    background-color: rgb(0, 0, 0);
    padding: 10px 10px;
    text-align: center;
}

.candy {
    height: 200px;
    width: 200px;
}

.limpio {
    height: 80px;
    width: 350px;
}

ul, nav {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.9;
}

/*a:hover {
    
}*/

a.btn {
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    background: linear-gradient(#f87408, #e74606);
    font-weight: 800;
    text-align: center;
    opacity: 5.0;
    font-family: 'Bruno Ace SC';
    position: absolute;
    left: 20px;
}

a.btn:hover {
    color: #6441a5;
}

hr {
    width: 150px;
    height: 2px;
    background-color: #f87408;
    border: 0;
    margin-bottom: 80px;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 125px 100px;
}

section h3.title {
    color: #414a4f;
    text-transform: capitalize;
    font: bold 32px 'Roboto', sans-serif;
    margin-bottom: 35px;
    text-align: center;
}

section p {
    max-width: 800px;
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
    line-height: 2;
}

ul.grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


/*-------------
 Header
-------------*/

header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 35px 100px 0;
}

header nav {
    display: flex;
}

header nav li {
    margin: 0 15px;
}

header nav li:first-child {
    margin-left: 0;
}

header nav li:last-child {
    margin-right: 0;
}


/*----------------
 Hero Section
----------------*/

.hero {
    position: relative;
    justify-content: center;
    min-height: 100vh;
    color: #fff;
    text-align: center;
}

.hero .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: #2A2B2E;
    z-index: -1;
}

.hero .background-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("img/banner.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    /*opacity: 0.75;*/
}

.hero h1 {
    font: bold 60px 'Roboto', sans-serif;
    margin-bottom: 15px;
}

.hero h3 {
    font: normal 28px 'Roboto', sans-serif;
    margin-bottom: 40px;
}

.hero a.btn {
    padding: 20px 46px;
}

/*-------------
 Responsible
-------------*/

@media screen and (max-width: 768px) {
    .reinerdaffi {
        display: none;
    }
    
    .live {
        display: none;
    }

    .partner {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .partner a {
        margin-bottom: 20px;
    }

    header {
        text-align: center;
    }
  
    header h2 {
        margin: 0;
        padding: 20px 0;
    }

    img[src="css/img/favicon.png"] {
        display: none;
    }

    .twitchplayer {
        display: none;
    }

    .hero .background-image:after {
        background-image: url(img/lkw-0001-remove.png);
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
    }

    .DickeHupen2 {
        display: none;
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3) {
    .hero .background-image:after {
        background-image: url(img/lkw-0001-remove.png);
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
    }
}