
/* Deklaration dass der Hintergrund randlos übergeht */ 
html,body {
    margin:0;
    padding:0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;

}

#body{
    overflow-x: hidden;
    -webkit-user-select: none; /* Für Safari */
    -moz-user-select: none; /* Für Firefox */
    -ms-user-select: none; /* Für Internet Explorer */
    user-select: none;

}



/* - - - - - - - - - - No-JS Warning */

#jswarning{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: black;
    position: relative;
    z-index: 100;
    top: 0;
    left: 0;
}

#headwarning{
    width: 80vw;
}

#headwarning h4{
    font-size: 2vw;
    z-index: 200;
    position: relative;
    color: #ffd700;
    text-align: center;
    font-family: 'Raleway';
    font-weight: 100;
}

.nojsopacity{
    opacity: 0;
}




/* - - - - - - - - - - END OF JS-Warning */
#Header {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    background-color: #121212;


}

#Header h1 {
    color: white;
    font-family: 'Titillium Web';
    font-weight: 300;
    font-size: 4vw; 
    margin-top: 1.5vw;
    margin-bottom: 1.5vw;
    letter-spacing: -0.03em
}

#Rahmen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#content {
    display: flex;
    flex-direction: column;

    width: 60vw;
    margin: 5vw;
    padding: 2em;
    box-shadow: 0px 0px 10px 0px black;
}

#content h2 {
    font-family: 'Titillium Web';
    font-weight: 500;
}

#content p, a {
    font-family: 'Titillium Web';
    font-weight: 300;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 1000px){

    #Header h1 {
        font-size: 10vw;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }
    
        
    #Banner{
        width: 90vw;
    }

    #Header {
        margin-bottom: 1em;
    }

    #content {
        width: 75vw;
    }
}
