/* Allgemeine Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hintergrundbild für die gesamte Seite */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #FFFFFF; /* Grau #333; */
  background-image: url('1.jpg'); /* Hier das Bild einfügen */
  background-size: cover; /* Bild passt sich der Bildschirmgröße an */
  background-position: center; /* Bild zentrieren */
  background-attachment: fixed; /* Bild bleibt beim Scrollen fixiert */
}


.container {
  width: 80%;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #1c87c9;  /*#1E90FF;*/
  color: white;
  padding: 5px 0;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Sektionen */
.section {
  padding: 40px 0;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  margin: 20px 0;
}

ul li {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 20px;
}

/* Call to Action Button */
.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1E90FF;
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #187bcd;
}

/* Formular */
form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  font-size: 1em;
}

form button {
  padding: 10px;
  background-color: #1E90FF;
  color: white;
  border: none;
  font-size: 1.2em;
}

form button:hover {
  background-color: #187bcd;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 1em;
}

footer a {
  color: #1E90FF;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsiveness */
@media screen and (max-width: 768px) {
  .container {
    width: 90%;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }
}
