footer  {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 10px 20px;
 background: linear-gradient(to right, #184241, #278585);
 text-align: center;
}

footer p {
 color: white;
 font-size: 16px;
}

footer a {
 color: white;
 text-decoration: none;
 font-size: 16px;
 transition: color 0.3s ease-in-out;
}

footer a:hover {

 transform: scale(1.1);
 box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.959);
}

footer .footer-logo {
 width: 30px;
 height: 30px;
 background-size: cover;
 background-position: center;
}

.footer-impressum-link {
 font-size: 16px;
 font-weight: 600;
 border-bottom: 1px solid transparent;
 transition: border-color 0.2s ease;
}

.footer-impressum-link:hover {
 transform: none;
 box-shadow: none;
 border-color: #ffffff;
}

body.dark-theme footer {
 background: linear-gradient(to right, #0f2d2c, #184241);
}

@media (max-width: 768px) {
 footer {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 12px;
 }

 footer p {
  width: 100%;
  text-align: center;
 }
}