BODY,P,TD,H1,H2,H3,H4,H5,H6,H7,UL,OL,LI,NOBR,B,I
  { font-family: Charter Roman, Verdana
}
* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Charter Roman, Helvetica, sans-serif;
  margin: 0;
}

/* Header/logo Title */
.header {
  padding: 80px;
  text-align: center;
  background: #1abc9c;
  color: white;
}

.header-bg-bild01 {
  background: url("http://www.china-besser-verstehen.de/images/header-bg-bild01.jpg") no-repeat center center fixed;    
}

.header-bg-bild02 {
  background: url("http://www.china-besser-verstehen.de/images/header-bg-bild02.jpg") no-repeat center center fixed;    
}

.header-bg-bild03 {
  background: url("http://www.china-besser-verstehen.de/images/header-bg-bild03.jpg") no-repeat center center fixed;    
}

/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: #333;
}

/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 15px;
  text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}
/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

.kontakt {
  background-color: #ffffff;
  padding: 10px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 0px;
}

.fakeimg01 {
  width: 100%;
  padding: 0px;
}

.autortext {
  font-size: 11pt;
  color: #5f5f5f;
}

/* Footer */
.footer {
  padding: 60px;
  text-align: center;
  background: #aaa;
}

.footer-bg-bild01 {
  background: url("http://www.china-besser-verstehen.de/images/footer-bg-bild01.jpg") no-repeat bottom left fixed;    
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}


