*   {
    margin: 3px;
    padding: 3px;

    }
html {
        background-color: #fff; /* im Internet Explorer ist manchmal die Standard Hintergrundfarbe nicht weiß, deshalb setzen wir es manuell */
        color: #111; /* auch hier eine Farbe ähnelnd zu schwarz, aber nicht so grell */
        font-family: Verdana, Helvetica, Arial, sans-serif;
    }
body {
        font-size: clamp(1em, 4vw, 1.5em);

     }

input[type="submit"] {
    font-size: 1.3em; padding: 5px 12px; 
    font-family: Roboto, sans-serif;
    font-weight: 300;
    color: black;
    border: 1px solid silver;
    background-image: linear-gradient(to top, gainsboro 0%, white 90%);
    border-radius: 20px;
 }
 input[type="text"]
{ 
  width: 400px; 
  height: 40px; 
  box-sizing: border-box;
  padding: 4px;
  outline: none;
}
h5 { 
    background-color: green;
    color: white;
    }
p {

    }

    table, th, td { 
        border: thin solid; 
        border-sytle: inset;
        border-collapse: collapse;
        border-spacing: 0px;
        font-size: clamp(1em, 2vw, 2em);
     }
     th {
        background-color: rgb(199, 199, 199);
     }
     tr:nth-child(even) {
        background-color: lightgoldenrodyellow;
        }
     /*tr:nth-child(odd) {
        background-color: #C0F390;
     }*/
 