/* CSS für den Body-Teil */
@-o-viewport { width: device-width; }

html, body {
overflow:hidden; // sicherheitshalber keine Scrollbars
margin:0px;
padding:0px;
width:100%;
height:100%;
font-size: 100%;
}

#Bildbox{
width:100%;
height:100%;
}

.anpassen{
width:100%;
height:100%;
}
.divSoundButton_Container{
	visibility:hidden;
}
.divSoundButton{
	z-index:100;
	position:absolute;
	left:0.5%;
	bottom:5%;
}
.divSoundButton  img{
	width:3vw;
}
.divSoundButton_Sprechblase { 
  position:absolute;
  width: 50%; 
  height: 95%;
   top:0px;
   left:7vw;
  line-height: 2vw; 
  font-size: 1.5vw;
  font-family: helvetica, tahoma;
  border: 4px solid #2651A6;
  margin:0 auto; 
  -webkit-border-radius: 20px; 
  -moz-border-radius: 20px; 
  border-radius: 30%;
  text-align: center; 
  background: #fff;
  cursor:default;
  opacity: 0;
  animation: fade 15s;
 }
@keyframes fade {
        0% { opacity: 0; }
		20% { opacity: 1; }
		80% { opacity: 1; }
        100% { opacity: 0; }
    }
