/***********************************************************************/
/* Style sheet                                                         */
/***********************************************************************/

/*---------------------------------------------------------------------*/
/* Body                                                                */
/*---------------------------------------------------------------------*/
body { background-color: rgba(165, 188, 250, 0.39);
      
    }

/*---------------------------------------------------------------------*/
/* Kopfbereich                                                         */
/*---------------------------------------------------------------------*/
#kopfbereich {
    background-color: rgba(255, 255, 0, 0.24);
    width:100%
             }

/*---------------------------------------------------------------------*/             
/* Navigation                                                          */
/*---------------------------------------------------------------------*/
#navibereich {
    background-color: rgba(0, 110, 255, 0.432);
    width: 100%;
            }

/*---------------------------------------------------------------------*/
/* Inhaltsbereich                                                      */
/*---------------------------------------------------------------------*/
#inhaltsbereich {
    
    height: auto;
        
           }             

/*---------------------------------------------------------------------*/                
/* Fussbereich                                                         */
/*---------------------------------------------------------------------*/
#fussbereich {
    background-color: rgba(0, 110, 255, 0.432);
    height: 50px;
    width: 100%;  
    position: fixed;
    left: 0px;
    bottom: 0px;
           }
             
.kopf {
  display: block;
  margin: left;
  width: 100%;

}

  #fuellen {
    height: 20px;
  }

/***********************************************************************************/  
/* Standard-Elemente (fuer einheitlichen Stil)                                     */
/***********************************************************************************/
h1{
  font-family: Comic sans MS; 
  font-size: 36px;
}

h2{
   font-family: Comic sans MS;
   font-size: 20px;
   margin-top: 50px;
}

h3{
   font-family: Comic sans MS;
   font-size: 18px;
   font-style: italic;
   font-weight: bold;
}

/***********************************************************************************/
/* Texteintrag fuer News                                                           */
/***********************************************************************************/
.eintrag {
  font-family:Comic sans MS; 
  font-size: 14px;
  margin-left: 10%;
  margin-right: 10%;
  padding:10px;
  border-style: solid;
  border-color: blue;
  border-radius: 10px;
  border-width: 2px;
  background-color: lightblue;
  
}

/**********************************************************************************/
/* Box fuer Codebeispiel                                                          */
/**********************************************************************************/
.code {
  font-family:'Courier New',Courier,monospace; 
  font-size: 16px;
  margin-left: 1%;
  margin-right: 1%;
  padding:10px;
  border-style: solid;
  border-color: yellow;
  border-radius: 10px;
  border-width: 3px;
  background-color: lightyellow;
  
}


/**********************************************************************************/
/* Standard Tags                                                                  */
/**********************************************************************************/
.cour16{
  font-family: 'Courier New', Courier, monospace; 
  font-size: 16px;
  margin: 0px;
}


/**********************************************************************************/
/* Text-Stile                                                                     */
/**********************************************************************************/

.txt14{
  font-family: Comic sans MS; 
  font-size: 14px; 
}

.txt16{
  font-family: Comic sans MS; 
  font-size: 14px;  
}
.txt18{
  font-family: Comic sans MS; 
  font-size: 18px;
}


.txt20{
  font-family: Comic sans MS; 
  font-size: 20px;
}

.txt22{
  font-family: Comic sans MS; 
  font-size: 22px;
}

.kursivfett{
   font-family: Comic sans MS;
   font-size: 18px;
   font-style: italic;
   font-weight: bold;
}

.txt26rotfett{
  font-family: Comic sans MS;
  font-size: 26px;
  font-weight: bold;
  color: red;
}  


/********************************************************************************/
/* Bilder                                                                       */
/*******************************************************************************/
.bildlinks {
  float: left;
  margin-right: 30px;
}
.nofloat{
  clear: both;
}



/***********************************************************************/
/* Menue                                                               */
/***********************************************************************/
/* Dropdown Button */
.dropbtn {
    background-color:rgba(75, 9, 230);
    color:rgb(255, 255, 0);
    width: 100px;
    padding: 6px;
    margin: 10px;
    font-size: 16px;
    border: 4px;
    border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    font-family: Comic sans MS;
  }
  
   /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
 
  /* Dropdown Content (Hidden by Default) */
   .dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(75, 9, 230);
    min-width: 200px;                                       /* Breite des Dropdown Menues */
    box-shadow: 0px 12px 24px 0px rgba(75, 9, 235);
    z-index: 1;
    font-family: Comic sans MS;
  }
  
  /* Links inside the dropdown */
   .dropdown-content a {
    color: rgba(255, 255, 0);
    padding: 6px 8px;
    text-decoration: none;
    display: block;
   }
  
  /* Change color of dropdown links on hover */
   .dropdown-content a:hover {background-color:hsla(258, 94%, 50%, 0.5)}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
      display: block;
      background-color: rgba(100,100,230 );
    }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: hsla(258, 94%, 50%, 0.5);} 


.fixedbox{
  position: fixed;
}

.linkbtn {
  background-color:rgba(75, 9, 230, 0.582);
  color:rgba(255, 255, 0, 0.993);
  width: 100px;
  padding: 6px;
  margin: 10px;
  font-size: 16px;
  border: 4px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  font-family: Comic sans MS;
  position: relative ;
  display: inline-block;
  text-align: center;
  text-decoration: none
  
 }

 .ueberschrift{
  background-color: rgba(16, 19, 199, 0.582);
  color:rgba(255, 255, 0, 0.993);
  width: auto;
  padding: 6px;
  margin: 10px;
  font-size: 16px;
  border: 4px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  font-family: Comic sans MS;
  text-align: center; 
  display: inline-block;
  
 }

 /**********************************************************************************/
 /* Inhaltsverzeichnis                                                             */
 /**********************************************************************************/

 .inhalt {
  position: relative;
  display: inline-block;
  
}

.inhalt-content{
  display: none;
  position: absolute;
  background-color:rgba(0, 110, 255, 0.432);;
  width: 600px;
  height: 250px;
  box-shadow: 0px 8px 16px 0px rgba(12, 27, 235, 0.87);
  padding: 12px 16px;
  z-index: 1;
  overflow: scroll;
  
}
 
 .inhalt:hover .inhalt-content{
    display: block;
   
 }
/*--------------------------------------------*/
/* Eintraege innerhalb des Dropdowns          */
/*--------------------------------------------*/

.inhalt-item{
  width: 580px;
  background-color:rgba(12, 27, 235, 0.87);
  padding: 5px;
  border-width: 1px;
  border-radius: 5px;
  border-color: black;
  border-style: solid;
  margin-top: 8px;
  display:block;
  text-decoration: none;
  font-family: comic sans MS;
  font-size: 16px;
  color: yellow
  
}

.inhalt-item:hover {
  background-color: rgb(124, 182, 216);
}


/*****************************************************************************************/
/* Quelltext-Box                                                                         */
/****************************************************************************************/ 
.codewnd{
    text-align: left;
    width: 500px;
    height: 200px;
    background-color: beige;
    font-family: Courier New ;
    font-size: 12px;
    padding-left: 5px;
    float: left;
    
   }
          
.gruen{
    color:green;
  }

.rot{
    color: red;
  }

 .tooltipred  {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    color: red;
  }   

 .tooltiptext {
    visibility: hidden;
    width: 300px;
    height: 180px;
    background-color:rgba(165, 196, 236);
    color:black;
    border-radius: 6px;
    padding: 5px;
    overflow: scroll;
    position: absolute;
    z-index: 1;
   }

.tooltipred:hover .tooltiptext {
    visibility: visible;
  }


