@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: "Arial", Verdana, "sans-serif";
    }

/*GLOBAL*/

html{
    background-color: #2b2b2b;
   
}

h1{
    letter-spacing: -1px;
    font-size: 30px;
    color:rgba(0, 0, 0, 0.43);
    padding: 30px;
    padding-top:0px;
    margin-top:0;
    text-align: center;
}
h2{
    letter-spacing: -1px;
    font-size: 40px;
    color:rgba(0, 0, 0, 0.63);
    padding: 30px;
    padding-top:20px;
    margin-top:0;
    text-align: center;
}
h3{
    letter-spacing: -1px;
    font-size: 40px;
    color:rgba(0, 0, 0, 0.43);
    padding: 30px;
    padding-top:0px;
    margin-top:0;
    text-align: center;
}
p{
    font-family: "Arial",sans-serif;
    font-size: 15pt;
    text-align: center;
    
}


/*-------------------------Header-----------------------------*/

.header,.footer{
width: 100%;
height:80px;
display: block;
background-color: #101010;
}

/* Sticky
.header{
    position: fixed;
    top: 0;
}*/

.innerHeader, .innerFooter{
 width: 1000px;
 height:100%;
 display: block;
 margin: 0 auto;
}

.innerHeader a{
    height: 100%;
}

.logoContainer img{
    max-height: 80px;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px;
  
}

.navigation{
    float: right;
    height: 100%;
}

.navigation a{
    height: 100%;
    display: table;
    float: left;
    padding: 0px 20px;

}

.navigation a li{
    vertical-align: middle;
    display: table-cell;
    color: white;
    font-family: sans-serif;
}


/*------------Body--------------------*/
.topContainer{
    display: grid;
    position: relative;
    place-items: center;
}

.gameLogo{
    position:absolute;
    width: 50%;
    left: 0;
    right: 0;
    text-align: center;
}




.wrapper{
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    background-color: white;
}
.wrapper *{
    max-width: 100%;
    margin: 0 auto;
   
}



.textbox{
    text-align: center;
    width: 95%;
    max-width: 60%;
    padding-bottom: 50px;
}

.Button{
    height:80px;
    padding:20px;
   
      
}
.storeButtons{
    
    display: flex;
    justify-content: center;
    padding-top: 60px;
    max-width: 600px;
}


.bottomPic{
    padding-top:100px;
}
/*-------------------------CMS----------------*/
.blog{
    width:85%;
}
article{

display: flex;
flex-direction: column;
padding: 30px 0;
}

article .headline{
    flex:2;
  
    
    display: grid;
    place-items: center;
    margin: 5px;
}
article .headline h1{
    padding: 25px;
}
article .left, article .right{
    flex:1;
    min-height: 100px;
    vertical-align: middle;
    display: grid;
    place-items: center;
    margin: 5px;
    padding: 5px;
}
article .articleContent{
    flex:2;
    Display: flex;
    flex-direction: column;
}
article div:not(.articleContent){
    background-color:rgb(230, 230, 230);
    border-radius: 0.2rem;
    color: rgb(39, 39, 39);
}
article .below{
    flex:2;   
    display: grid;
    place-items: center;
    margin: 5px;
    padding: 20px;
}
article p{
    text-align: middle;
}
.endOfArticle{
    border-radius: 2rem;
    width:100%;
    background-color: #2b2b2b;
    height: 15px;
}
/*-----------------------DSGVO---------------------*/
.DSGVO {
    width: 90%;
}
.DSGVO *{
    text-align: left;
}
.DSGVO h1{
    font-size: 30px;
    padding: 20px;
    padding-left: 0px;
}

.DSGVO h2{
    font-size: 30px;
    padding: 20px;
    padding-left: 0px;
}
.DSGVO h3{
    font-size: 30px;
    padding: 20px;
    padding-left: 10px;
}
.DSGVO h4{
    font-size: 25px;
    padding: 20px;
    padding-left: 10px;
}

.DSGVO li{
    font-size: 20px;
    list-style:circle inside;
    padding-left: 40px;
}
.DSGVO p{
    padding-left: 40px;
}

.DSGVO .LanguageToggle{
    padding-top: 20px;
    margin-right:0;
    margin-left: auto;
    text-align: right;
}

/*------------------ERRORPAGE--------------------*/

.error{
    padding-top:100px;
    display: block;
   place-items: center;
    margin:0 auto;
}
/*---------------COOKIE CONTAINER-----------------*/

#blackBoxContainer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color:rgba(0, 0, 0, 0.43);
    transition: 400ms;
    opacity: 1;
    pointer-events: all;
}
#blackBoxContainer.hidden{
    opacity: 0;
    bottom:-100%;
    pointer-events: none;
}

#cookieMonster {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1b1b1b;
    color: #f5f6fa;
    padding: 0 32px;
    box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
  
    transition: 400ms;
  }
  #cookieMonster p{
      padding: 10px;
  }
  #cookieMonster a{
  
    text-decoration: underline;
    color: #f5f6fa;
  }
  
  #cookieMonster.hidden{
    bottom: -100%;
  }
  .cookie-btn {
    justify-content: center;
    text-align: center;
    margin: auto;
    display: block;
    background: #008a17;
    border: 0;
    color: #f5f6fa;
    padding: 12px 48px;
    font-size: 18px;
    margin-bottom: 16px;
    border-radius: 8px;
  }


/* ---------------Footer------------------------ */
.footerElements{
    margin: 0 auto;
    text-align: center;
    height: 100%;
    padding: 10px;
    padding-bottom: 0;

}

.footerElements a{
   margin: 20%;
    display: table;
    text-align: center;
    margin:0 auto;
}

.footerElements a li{
    vertical-align: middle;
    display: table-cell;
    color: white;
    font-family: sans-serif;
    margin: 0 auto;
    text-align: center;
    padding: 5px;
}


@media screen {
   
}  

@media (max-width: 1024px){

    .wrapper{
        width:100%;
    }
    .innerHeader,.innerFooter{
        width:95vw;
    }
    article .articleContent{
        flex:2;
        Display: flex;
        flex-direction: column;
    }
    article{
        width: 100%;
    }
 
}
@media (min-width:769px){
    .logoContainer{
        height:100%;
        display: table;
        float: left;
    }
   .Button{
       float:left;
   }

}

@media (max-width: 768px){
  
    .header{
        height: 160px;
    }
    .innerHeader{
        width:95vw;
        height:50%;
    }
    .logoContainer{
        display: grid;
        place-items: center;
    }
    .navigation{
        display: flex;
        float:none;  
        justify-content: center;
    }
    .storeButtons{
        display: grid;
     }
  .blog{
    width: 100%;
  }
  .DSGVO p{
    padding-left: 0;
}
.DSGVO li{
    padding-left: 0;
}
    
}

@media (max-width: 400px){

    
}


/*---------Animations-------------*/


.hoverEffect{
    transition: all 250ms ease;
    background-color: #101010;
   
}

.hoverEffect:hover{
 /*   box-shadow: 0 0 0 0.2rem grey; */
   border-radius: 0.5rem; 
    transform: translate(0,1rem);
    z-index: 100;
}

.Button{
    transition: all 250ms ease;
}

.Button:hover{
    transform: translate(0,-0.5rem);   
}
.wobbleEffect{
    animation: wobble 6s ease-in-out infinite alternate;
}

@keyframes wobble{
    0%{
        transform: scale(1);
        transform: rotateZ(5deg);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
        transform: rotateZ(-5deg);
    
    }
}

@keyframes rotate{
    0%{
        transform: rotateZ(30deg);
    }
    100%{
        transform: rotateZ(-30deg);
    }
     
}

