/**************************************************
*    Style-Definition fuer Webseiite gesamt       *
*                                                 *
**************************************************/
:root{
    --weissfarbe:   white;
    --gelbfarbe:    yellow;
    --hgraufarbe:   rgb(173, 169, 169);
    --graufarbe:    grey;
    --rotfarbe:     red;
    --gruenfarbe:   green;
    --dgruenfarbe:  darkgreen;
    --blaufarbe:    blue;
    --dblaufarbe:   darkblue;
    --schwarzfarbe: black;
}
header{
    margin-left: 0px;
    background-color: var(--hgraufarbe);
    height: 60px;
}
html{ 
  height: 100%; 
  color: var(--weissfarbe);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
body{ 
    height: 100%;
    padding:0px;
    background-image: url(../hintergrund/bild00.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--graufarbe);
}
/*******    Namensschild - Links-Oben in Navigationsleiste   *******/
.bild50{
    width: 350px;
    height: 50px;
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.5);
}
.auswahl {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0 px;
}
.auswahl a{
    background-color: var(--dblaufarbe);
    color: var(--gelbfarbe);
    text-decoration: none;
    padding:8px;
    align-items: center;
    border: 01px solid var(--schwarzfarbe);
    box-shadow: 10px 10px 5px 0px rgba(65, 59, 59, 0.703);
    display: flex;
    justify-content: flex-start;
}
.auswahl a:hover{
    background-color: var(--blaufarbe);
}
H2{margin: 0px;
    padding: 15px;
    background-color:var(--dgruenfarbe);
    color: var(--weissfarbe);
}