/* CSS Document */
/* contakt */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}
header {
  /*background-color: #004466;*/
  color: white;
  padding: 1rem;
  text-align: center;
}
main {
  max-width: 400px;
  margin: 2rem auto;
  padding: 5rem; /*Randabstand*/
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
h1, h2 {
  color: #004466;
}
a {
  color: #004466;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
address {
  font-style: normal;
  margin-bottom: 1rem;
}
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: #eee;
  margin-top: 2rem;
}

/* --- Responsive Anpassung für kleine Displays --- */
    @media (max-width: 600px) {
        nav a {
            display: block; /* Navigation untereinander */
            text-align: left;
        }

        main {
            flex-direction: column; /* Inhalte untereinander statt nebeneinander */
        }
    }
