html {
	height: 100%;
	margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
}

#content {
  flex: 1;
}

#content-2 p{
	font-size: 1.2em;
}

/* Ansicht SmartPhones */
@media screen and (max-width:1100px) {
#ResponsiveContainer {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 50px;
  height: 100%;
}

#content-left, #content-right {
  justify-content: left;
  text-align: center;
  flex: 1 1 2px;
  padding: 5px;
  overflow: auto;
}	


#content-middle{
  flex: 1 1 2px;
  width: 100%;
  justify-content: center;
  height: 100%;
}	

#content-1 img{
	justify-content: center;
	width: 50%;
	height: 50%;
}

}
/* Ansicht SmartPhones Ende*/

/* Ansicht für Desktop-Monitore */
@media screen and (min-width:1101px) {
#ResponsiveContainer {
  display: flex;
  flex-direction:row;
  padding: 10px;
  flex:1;
  height: 100%;  
}

#content-left {
  justify-content: left;
  text-align: right;
  flex: 1 1 5px;
  /*border: 1px solid black;*/
  padding: 0 10px;
  margin: 0 10px;
}

#content-right {
  justify-content: left;
  text-align: left;
  flex: 1 1 5px;
  padding: 0 10px;
  margin: 0 10px;
  width: 35%;
}

#content-middle{
width: 100%;
display: flex;
flex-direction: row;
  overflow: auto;
  height: 100%;  
}

#content-1{
	padding-top: 20px;
	height: 100%;
	width: auto;
	justify-content: center;
	text-align: center;
}	

#content-1 img{
	justify-content: center;
	width: 70%;
	height: 70%;
}

#content-2{
  padding-left: 20px;
  text-align: left;
  height: 100%;
  width: 50%;
}

#content-left, #content-right{
  overflow: auto;
  height: 100%;
}
  

}