/*Schriftart lokal gehostet src noch anpassen Serverordner /fonts/ erstellen font-family noch anpassen*/
@font-face {
  font-family: "MeinebesondereSchriftart"; /* Name, den Sie für Ihre Schriftart verwenden */
  src: url("/fonts/meinebesondereschriftart.woff2") format("woff2"), /* Pfad zur Schriftartdatei */
       url("/fonts/meinebesondereschriftart.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}


/* AUSWAHLMENUE*/
* {margin: 0;
  padding: 0;
  font-family: arial, sans-serif;
}
header {background-color: gray;  
        width: 98%;
        float: left;
        border-bottom: 0.1em solid black;
        margin-left: 0.5em;
        margin-right: 0.5em;
}  
#bereichlogo {color: white;
            background-color: limegreen;
            display: block;
            padding: 0.5em;
            text-decoration: none;
            float:left;
            width: auto;
        }
#steuerung li {
          list-style: none;
          float: left;
                    }           
#steuerung a {
        display: block;
        height: 100%;
        width: 100%;
        padding: 0.5em;
        text-decoration: none;
        color: white;
        background-color: gray;
} 
.menue-button {
        display: none;
        font-size: 1.5em;
        font-weight: 800;
        }
#steuerung {float: right;}        

#steuerung a:hover {color: black;
        background: orange;}

@media screen and (max-width:600px) {
    .menue-button {
        background-color: darkblue;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        padding: 0.6em;
        color: white;
        cursor: pointer; 
        text-decoration: none; }
    #bereichlogo {
            width: 100%;}
    #steuerung { float: left;
            width: 100%;
            display: none;}
    #steuerung li {width: 100%;
          border-bottom: 0.1em solid limegreen;}
    .menue-button:hover {
        color: black;
        background: orange;}               
}        
#nav-menue:target #steuerung {display: block;} 
#nav-menue:target .menue-button-beschr-open {display: none;} 

/*FORMULAREINGABE*/
input, textarea {
        width: 70%;
        border: 0.1em solid black;
        font-size: 1.1em;
        border-radius: 0.3em;
        margin: 0 auto;
        margin-bottom: 0.5em;
        }
form {
        border: 0.1em solid mediumseagreen;
        width:95%;
        background-color: whitesmoke;
        margin: 0.2em auto; 
        padding:1em;
        padding-top: 3em;

}
form label {
        display: block;
        float: left;
        width: 8em;
        
}
.auswahlmenue {
        width: 70%;
        border-radius: 0.2em;
        border: 0.1em solid black;
        font-size: 1.1em;
        margin: 0 auto;
        margin-bottom: 0.5em; 
}
.submit-button {
        width: 90%;
        background-color: limegreen;
        border-radius: 0.2em;
        font-size: 1.2em;
        padding: 1em;
        margin-top: 1em;
        cursor: text;
        
}
.submit-button:hover {
        background-color: yellow;
        box-shadow: 2em 2em 2em grey;
}

@media screen and (max-width:600px) {
form {
        width: 90%;}
input, textarea {
        width: 100%
}
.auswahlmenue {width: 100%;} 
.submit-button {
        width: 100%;
}       
             
}
table {
  border-collapse: collapse;
  width: 90%;
  margin: 2em auto;
}
th, td {
  border: 1px solid #ccc;
  padding: 0.6em 1em;
  text-align: right;
}
thead th {
  background: #e3f1fc;
  text-align: left;
}
tr:nth-child(even) {
  background: #f7fbff;
}
caption {
  caption-side: top;
  font-size: 1.2em;
  font-weight: bold;
}    