*{
    margin:0;
    padding: 0;
}
body{
    font-family: "Arial", serif;
}

html {
    height: 100%;
}

#page {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
}
#topBar{
    display: flex;
    flex-direction: column;
}
nav{
    display: flex;
    background-color: white;
    justify-content: center;
    height: 30px;
}

#homeButton{
    border: #99ff81 1px solid;
}
#homeButton:hover{
    background-color: #99ff81;
}
#featButton{
    border: #86ecff 1px solid;
}
#featButton:hover{
    background-color: #86ecff;
}
#demosButton{
    border: #faa5ff 1px solid;
}
#demosButton:hover{
    background-color: #faa5ff;
}
#docButton{
    border: #ffab9f 1px solid;
}
#docButton:hover{
    background-color: #ffab9f;
}
#aboutButton{
    border: #ffdc99 1px solid;
}
#aboutButton:hover{
    background-color: #ffdc99;
}

#download{
    margin-top: 10px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
#downloadButton{
    padding: 10px;
    background-color: #000000;
    border-radius: 10px;
    color: white;
}
#downloadButton:hover{
    background-color: #a60a00;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('pic/logoStyleGFX.png') no-repeat center;
    background-size: contain;
    /*animation: scrollBackground 12s linear infinite;*/
    height: 200px;
}
@keyframes scrollBackground {
    from { background-position: 0 0 }
    to { background-position: 300px 0 }
}

#title{
    text-shadow: -1px -1px 1px white;
    text-align: center;
    font-size: 30px;
    font-family: "Arial Black", serif;
    flex:1;
}

#content {
    flex: 1;
    display: flex;
    height: 100%;
    width: 100%;
    margin-top: 10px;

    border-top: #fceaff 1px solid;
}

#rightSite {
    flex: 1;
    background-color: transparent;
}

article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 6;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px;
    background-color: white;
}
#leftArticleBox{
    margin-top: 20px;
    margin-right: 10px;
    flex: 1;
}
#rightArticleBox{
    flex: 3;
}

#leftSite {
    flex: 1;
    background-color: transparent;
}

.mainMenu{
    border-radius: 10px;
    margin: 2px;
    background-color: transparent;
    padding: 5px;
    text-decoration: none;
    color: black;
}
.pUnterpunkt{
    padding-left: 20px;
}

li a{
    text-decoration: none;
    color: #008fff;
}
li a:hover{
    text-decoration: underline;
}

h4{
    padding-top: 10px;
}

.playerDemo{
    height: 281px;
    width: 500px;
}
/* --------------------------------------------------- */
code{
    text-align: left;
    width: 100%;
    white-space: nowrap;
    padding: 5px;
    margin: 10px 0 10px 0;
    background-color: #3d3d3d;
    color: white;
}
.inlineCode{
    width: 100px;
    padding: 0 5px;
}
.p{
    width: 100%;
}
.pWithCode{
    margin-top: 10px;
    width: 100%;
}
.player{
   color: #ffb35e;
}
.sgfx-source{
    color: #ffdc99;
}
.source{
    padding-left: 20px;
}
.link{
    color: #99ff81;
}
.red{
    color: rgba(255, 123, 118, 0.78);
}