* {
    box-sizing: border-box;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

html, body {
    margin:0;
    padding:0;
    scroll-behavior: smooth;
}
/* use viewport-relative units to cover page fully */
body {
    font-family: sans-serif;
    overflow-x: hidden; 
    background-color:rgb(53, 53, 53);
    color: white;
    width: 100vw;
}

h1 {
    text-align: center;
    padding: 5vh; 
}

h1, h2, h3, h4, h5, h6 {
    font-family:Georgia, 'Times New Roman', Times, serif;
    text-transform: uppercase;
}

a {
    color: #adadad;
    text-decoration: none;
}

a:hover{
    color: #6e6e6e;
}

hr {
    height:3px;
    border-width:0;
    color:rgba(128, 128, 128, 0.541);
    background-color:rgba(128, 128, 128, 0.5);
}

::-webkit-scrollbar { /* width */
    width: 15px;
  }
  ::-webkit-scrollbar-track { /* Track */
    background: #f1f1f1;
  }
  ::-webkit-scrollbar-thumb { /* Handle */
    background: #888;
  }
  ::-webkit-scrollbar-thumb:hover { /* Handle on hover */
    background: #555;
  }


#intro {
    padding: 50px 150px 30px 150px; 
    font-size: larger;
    line-height: 150%;
}

footer {
    padding: 50px 150px 50px 150px; 
    margin-top: 80px;
    color:#555;
    background-color: rgb(41, 41, 41); 
}

.scene {
    position: relative;
    width: 50%;
    height: 100%;
    min-height: 50vh;
    /* margin-left: 5%;
    margin-right: 5%; */
    margin: 4px; /* Ausgleich Rand */

    
} 
canvas:hover {
    background-color:rgb(46, 46, 46);
    border: 3px solid #f1f1f19a;
    cursor: grab;
}
canvas:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}
.left {
    margin-right: 5%;
}

.right {
    margin-left: 20px;
}

.license {
    width: 40px;
    float: left;
    padding-right: 7px;
}

.flexBox{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    /* height:50vh; */
    padding: 50px 150px 50px 150px;
}

.text{
    /* position: relative; */
    width: 50%;
}

.kurzinfo {
    line-height: 150%;
}

@media (max-width: 1000px){
    #intro, footer {
        padding: 50px 50px 50px 50px;
    }

    .flexBox {
        flex-direction: column;
        padding: 50px 50px 50px 50px;
    }
    .text {
        width: 100%;
        order: 2;
    }
    .scene {
        width: 100%;
        order: 1; 
    }
}
