footer {
  box-sizing: border-box;
  background-color: var(--navButtonBackgroundColor);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 1em;
  width: 80%;
  border-radius: 1em;
  margin: 0 auto;
}

footer a {
  color: var(--fontColor);
  margin: 1em;
  text-decoration: none;
  transition: background-color 0.6s ease, color 0.6s ease;
}

footer a:hover {
  background-color: var(--fontColor);
  color: var(--navButtonBackgroundColor);
}

footer h4 {
  color: var(--fontColor);
  margin-left: 25%;
}

footer #languageForm {
  margin: 1em;
}
footer img {
  margin: 1em;
  border-radius: 0;
  margin-left: auto;
}

footer img:first-child {
  margin: 0em;
  border-radius: 0;
  margin-left: 0;
  justify-content: space-between;
  align-items: center;
}

footer img:hover {
  transform: scale(1);
}

@media (max-width: min(768px)) {
  footer {
    width: 100%;
  }
}
