/* Allgemeine Stile */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: rgba(189, 224, 254, 0.3);
  /* Hintergrundfarbe mit 30% Deckkraft */
  color: #707070;
  /* Textfarbe */
}

header {
  background-color: #bde0fe;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
}

.header-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  margin-right: 10px;
  margin-left: -80px;
}

.logo img {
  height: 100px;
}

nav {
  flex-grow: 1;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  color: #707070;
  text-decoration: none;
  font-size: 16px;
}

.nav-links a:hover {
  text-decoration: underline;
}

.content-wrapper {
  flex: 1;
}

.container {
  display: flex;
}

/* Stil für die linke Spalte */
.left-column {
  flex: 1;
  padding: 80px;
}

/* Stil für die rechte Spalte */
.right-column {
  flex: 1;
  padding: 100px;
  display: flex;
  flex-direction: column;
}

/* Stil für die Box */
.box {
  border: 1px solid #ccc;
  padding: 20px;
  background-color: #bde0fe;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Stil für die horizontale Linie */
.line {
  border-top: 1px solid #ffffff;
  margin: 10px 0;
}

/* Stil für den Anmelde-Button */
.button-container {
  display: flex;
  justify-content: flex-end;
}

.button {
  padding: 10px 20px;
  background-color: #ffffff;
  color: #707070;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Stil für die Spalten */
.column {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.collage {
  width: 550px;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  padding: 20px;
}

footer {
  background-color: #c4c4cc;
  padding: 5px 0;
  text-align: center;
  flex-shrink: 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin: 10px;
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 10px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-content p,
.footer-content a {
  color: #707070;
  text-decoration: none;
  margin: 5px 0;
  white-space: nowrap;
}

.footer-content a:hover {
  color: #d8d8d8;
}

.link {
  color: blue;
  text-decoration: underline;
}

.footer-image {
  height: 40px;
  margin: 0 10px;
}

.footer-bottom {
  background-color: #222;
  color: #bbb;
  padding: 10px 0;
}

.footer-bottom p {
  margin: 0;
}

.container {
  display: flex;
  flex-wrap: wrap;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (max-width: 768px) {
  /* Styles für Tablets und kleinere Bildschirme */
  .container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* Styles für Smartphones */
  .container {
    padding: 10px;
  }
}
