footer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0rem;
  /* border-top: 1px solid var(--bg-2); */
  /* padding-top: 1.5rem; */
  font-family: "Nunito", sans-serif;
}

footer ul {
  margin-left: 0px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
  line-height: 1.6;
  align-items: baseline;
  gap: 0.5rem;
}

footer a {
  color: var(--decoration-secondary);
  text-decoration: none;
}

footer h3 {
  margin-bottom: 0.5rem;
  color: var(--decoration-secondary);
  margin-right: 1rem;
  font-family: "Nunito", sans-serif;
}

#footer-illu {
  padding-top: 30px;
  width: 100px;
  height: 100px;
  margin: 0px auto;
  overflow: hidden; /* Ensures excess height of the image is clipped */
  display: flex;
  flex-direction: column;
  align-items: center; /* Align items to the center horizontally */
}

#footer-image {
  width: 100px; /* Ensures the image takes the full width of the parent */
  object-fit: contain; /* Optional: this maintains aspect ratio, can be removed if not needed */
}

#footer-illu a:hover {
  transform: translateY(5px);
}

#footer-illu a:active {
  transform: translateY(10px);
}

@media screen and (max-width: 400px) {
  footer {
    flex-direction: column !important;
    gap: 1rem;
  }
}
