body {
  font-family: Arial, sans-serif;
  background-color:orange;
}

header {
  background-color: aliceblue;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
}

header h1 {
  color: #333;
  margin: 0;
  padding-right: 20px;
}
header a {
  text-decoration: none;
  color: #333;
  font-size: 24px;
}

header a:hover{
  color: gray
}

header p {
  margin: 0;
  font-size: 0.8em;
}

header nav {
  display: flex;
  padding-left: 25px;
}

header nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li {
  margin-right: 50px;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
}

header nav ul li a:hover {
  color: gray;
}

section {
  margin: 1em 0;
  background-color:aliceblue;
  padding: 1em;
  border-radius: 20px
}

section h2 {
  color: #333;
}

form {
  margin: 1em 0;
}

form label {
  display: block;
  margin-bottom: 0.5em;
	display: inline-block;
}

form input[type="text"] {
padding: 0.5em;
font-size: 1em;
width: 70%;
border: 1px solid #ccc;

}

form input[type="submit"] {
background-color: #00cc99;
color: #fff;
padding: 0.5em 1em;
border: none;
cursor: pointer;
}

form input[type="submit"]:hover {
background-color: #009966;
}


footer {
background-color: aliceblue;
padding: 0.5em;
text-align: center;
border-radius: 20px;
}

/* Erstelle eine Media-Abfrage für Bildschirme mit einer maximalen Breite von 768px */
@media only screen and (max-width: 1200px) {
  /* Passe die Schriftgröße der Überschriften an */
  header h1, section h2 {
    font-size: 1.2em;
  }
  /* Passe die Schriftgröße der Kontaktinformationen an */
  header p {
    font-size: 0.7em;
  }
  /* Passe die Schriftgröße des Menüs an */
  ul {
    font-size: 0.8em;
  }
  /* Passe die Schriftgröße des Formulars an */
  form label {
    font-size: 0.9em;
  }
  /* Passe die Größe der Eingabefelder des Formulars an */
  form input[type="text"], form input[type="submit"] {
    font-size: 0.9em;
    padding: 0.3em;
  }
  .ExpressDiv {
    padding-left: 25%;
  }
}
