/* Entfernt Margin und Padding von body und html */
html,
body {
  margin: 0;
  padding: 0;
  background-color: #f1f2de;
}

/* Entfernt mögliche Standard-Margins oder -Paddings von nav und main */
nav,
main {
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    justify-content: center;
    margin-left: 268px;
  }
}

.nav-link,
.navbar-brand {
  color: aliceblue !important;
}

.nav-link:hover {
  font-weight: 100;
}

p .card-text {
  font-size: 14px;
}
#logo {
  height: 150px;
}

.hg_gruen {
  background-color: darkgreen;
}

.hg_weiss {
  background-color: rgb(254, 255, 255);
}

.hg_beige {
  background-color: #f1f2de;
}

.hg_hellblau {
  background-color: #e7eef9;
}

.hell {
  color: aliceblue;
}

.dunke {
  color: darkslategray;
}
.h-150 {
  height: 350px;
}

/* CSS for a div that appears with a pull-down effect */

/* Add keyframes for the pull-down animation */
@keyframes pullDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Style for the div with the pull-down effect */
.slow-pull-down {
  animation: pullDown 2s ease-in-out;
  opacity: 1;
}

/* Optional: Initial state to keep it hidden until the animation starts */
.slow-pull-down {
  transform: translateY(-100%);
  display: block;
  animation-fill-mode: forwards;
}

/* Example usage */
/* HTML */
/* <div class="slow-pull-down">Dein Inhalt hier...</div> */

/* .content-section {
  background-color: #f8f8f8;
  padding: 3rem;
} */
.content-section h1 {
  margin-bottom: 2rem;
  font-weight: bold;
}
.content-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
}
.card-text {
  font-size: 19px;
}

p main,
main p,
p .card-text,
.card-text p {
  font-size: 19px;
}

footer p {
  font-size: 14px;
}
