/* Farben */

body {
  background-color: #f7f7f7;
}

h1 {
  color: #333;
}

p {
  color: #444;
}

label {
  color: #666;
}

select, textarea {
  border: 1px solid #ccc;
  padding: 5px;
  width: 50%;
}

textarea {
  height: 100px;
}

input[type="submit"] {
  background-color: #0073b7;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #005b96;
}

/* Schriftart */

body {
  font-family: "DIN Pro", sans-serif;
}

/* Umlaute */

@font-face {
  font-family: "DIN Pro";
  src: url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap") format("woff2");
  
