body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #f7f8fa;
  color: #14213D;
  line-height: 1.6; /* Erhöht den Zeilenabstand */
}

header {
  background: #14213D;
  color: white;
  padding: 1rem;
  text-align: center;
}

.logo {
  width: 120px;
  display: block;
  margin: 0 auto 1rem;
}

nav a,
.dropbtn {
  background: none;
  border: none;
  color: #FCA311;
  font-weight: bold;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
}

main {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.card {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  text-decoration: none;
  color: inherit;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
}

.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 0 0 8px 8px;
}

.dropdown:hover .dropdown-content {
  display: block;
  position: absolute;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 0 0 8px 8px;
}

.banner-img {
  width: 100%;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

nav a,
.dropdown-content a,
.dropbtn {
  text-decoration: none !important;
}

/* Responsive Bilder */
img {
  max-width: 100%;
  height: auto;
  display: block;
}


.poem-list a {
  color: black; /* Setzt die Textfarbe auf Schwarz */
  text-decoration: none; /* Entfernt die Unterstreichung der Links */
  font-weight: normal; /* Setzt den Text auf normale Stärke */
}

.poem-list a:hover {
  text-decoration: underline;
}

