/* der Body der Seite */
body {
  background-image: linear-gradient(rgb(245, 227, 190), orange);
  background-repeat: no-repeat;
}

/* Hinweise */
p.hinweis {
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 3px;
  text-align: center;
}

input[type=submit] {
  text-decoration: none;
  background-color: blue;
  color: wheat;
  padding: 5px;
  margin: 5px;
  border-radius: 18px;
  font-size: larger;
}

/* Die trennlinie zwischen Anwendung und Schaltfläche */
hr {
  height: 3px;
  background-color: darkgoldenrod;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Überschriften */
h1 {
  background: rgb(243, 200, 122);
  text-align: center;
}

h1.hinweis {
  background-color: red;
  color: white;
}

/* Links zu anderen Seiten */
a {
  text-decoration: none;
  background-color: blue;
  color: wheat;
  padding: 10px;
  margin: 20px;
  border-radius: 18px;
  font-size: 20px;
}

a.auswahlfest {
  text-decoration: underline;
  background-color: wheat;
  color: rgb(228, 228, 238);
  padding: 2px;
  margin: 1px;
}

a.auswahlbutton {
  text-decoration: none;
  background-color: transparent;
  color: navy;
  border-radius: 0px;
  padding: 1%;
  margin: 0%;
  font-size: medium;
}

p.button {
  margin: 50px;
}

p.hinweisjahr {
  font-size: 18px;
  margin: 5;
}

/* Tabellen */
table {
  background-color: wheat;
  color: black;
}

/* Titelzeile in Tabellen */
th {
  padding: 5px;
  border: 1px solid black;
}

/* Datenfelder in Tabellen */
p.vertrag {
  background-color: yellow;
}

td.vertrag {
  background-color: yellow;
}

td {
  padding: 5px;
  border: 1px solid black;
  font-size: large;
}

/* Fusszeilen */
footer {
  font-weight: bold;
  font-size: 10px;
  font-style: italic;
}