* {
  font-family: sans-serif;
  padding: 12px;
  color: grey;
}
body>header {
  background: url("../img/himmel.jpg");
  border-radius: 10px;  
  box-shadow: 5px 5px 9px gray;
}
body>header>h1 {
    color: lightgrey;
}
table {
    font:12pt Verdana;
}
table>caption{
    font:14pt Verdana;
    color: blue;
    font-weight: bold;
}
td {
    background-color: lightgrey;
    font-weight: bold;
}
nav>a {
  color: white;
  text-decoration: none;
}
nav>a:hover, h1.title {
  color: white;
  text-shadow: 0 0 10px white, 0 0 20px white;
  background-color: deepskyblue;
}
.text {
    color: black;
    text-align: left;
    margin-left:10px;
}
form {
   margin-left: 0;   
}
fieldset {
      
      margin-left: 10px;
      border: 1px solid #ccc;
      padding: 10px;
      max-width: 1000px;
      
    }

    legend {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr; /* Zwei Spalten */
      gap: 15px; /* Abstand zwischen den Feldern */
    }

    .form-grid label {
      text-align: left;
      display: block;
      margin-bottom: 5px;
    }

    .form-grid input, .form-grid checkbox {
      width: 100%;
      padding: 8px;
      box-sizing: border-box;
    }
    
    .message label {
       font-weight: bold;
       color: red;
        
    }
    
    .blue a, .blue label {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        color: white;
        background-color: rgb(41, 82, 163); 
        text-decoration: none;
        border-radius: 5px;
        border: none;
        text-align: center;
        cursor: pointer;
        /**
        font-weight: bold;
        color: blue;
        */
    }
    .blue a:hover, .blue label:hover {
        background-color: deepskyblue;
    }
    
    dt {
        font-weight: bold;
    }
    
    dd {
        color: blue;
    }
    
    input[type="submit"], input[type="reset"] {
        background-color:  rgb(41, 82, 163); 
        color: white;
        padding: 10px;
    }
    
    input[type="submit"]:hover, input[type="reset"]:hover {
       background-color: deepskyblue;
    }
    
    