footer {
  background-color: #3f3f3f;
  -webkit-box-shadow: 0px 5px 15px -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 15px -1px rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
  color: #eeeeee;
  display: flex;
  flex-direction: row;
  flex-wrap: no-wrap;
  justify-content: space-between;
  gap: 10px 30px;
  align-items: start;
  font-size: 0.8em;
  bottom: 0;
}
footer a:link,
footer a:visited {
  color: #ffffff;
  font-size: inherit;
}
footer a:hover {
  color: #cccccc;
}
footer .banners {
  display: flex;
  flex-wrap: wrap;
  align-items: space-evenly;
  justify-content: space-evenly;
  flex-grow: 1;
  gap: 10px;
}
footer .banners .banner {
  display: inline-block;
  padding: 5px 15px;
  margin-inline-end: 15px;
  border-radius: 10px;
}
footer .banners .banner.white {
  background-color: #ffffff;
}
footer .banners .banner.oeko {
  background: linear-gradient(160deg, #ffffff 0%, #a8d567 100%);
}
footer .banners .banner img {
  height: 70px;
}
footer .links {
  font-size: inherit;
  text-align: right;
  flex-grow: 0;
  min-width: 300px;
}
footer .links a:link {
  text-decoration: none;
}
footer .links .copyright {
  margin-top: 1.5em;
  font-size: 0.9em;
}
@media (max-width: 768px) {
  footer {
    padding-block: 10px;
    flex-wrap: wrap;
  }
  footer .banners {
    flex-wrap: wrap;
    justify-content: center;
    margin-block: 20px;
    gap: 20px 0;
    width: 100%;
  }
  footer .banners .banner img {
    width: 75vw;
    height: auto;
  }
  footer .links {
    text-align: center;
    width: 100%;
    font-size: 1em;
  }
}
