

#hl{
	
	font-size:20;
}

.suchbild{
	max-height: 400px;
}


  /* Stil für den Header */
    .header {
      height: 60px;
      background-color: #333;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Stil für den Footer */
    .footer {
      height: 60px;
      background-color: #333;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Stil für den scrollbaren Bereich */
    .scrollable {
      height: calc(100vh - 120px); /* 100vh minus Header und Footer */
      overflow-y: auto;
    }


.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-group button {
  background-color: #4CAF50;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.active {
  background-color: #04AA6D; /* Add an active/current color */
}


.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px 0;
}

.footer a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666;
  font-size: 14px;
}

.footer a i {
  font-size: 20px;
  margin-bottom: 5px;
}

.mobile-bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  will-change: transform;
  transform: translateZ(0);
  display: flex;
  height: 50px;
  box-shadow: 0 -2px 5px -2px #333;
  background-color: #fff;
}
.mobile-bottom-nav__item {
  flex-grow: 1;
  text-align: center;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-bottom-nav__item--active {
  color: red;
}
.mobile-bottom-nav__item-content {
  display: flex;
  flex-direction: column;
}