/* --------- Footer --------- */
.footer {
  background: #333;
  color: white;
  padding: 20px 30px;
  animation: fadeIn 0.3s ease-out 1s forwards;
  /* Logo */
  /* Menu */
}
.footer .footer-logo {
  margin-bottom: 20px;
}
.footer .footer-logo img {
  max-width: 120px;
  filter: invert(100%) brightness(100%);
}
.footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-menu li {
  margin: 10px 0;
}
.footer .footer-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  gap: 10px;
  transition: color 0.3s;
}
.footer .footer-menu a:hover {
  color: #ff79da;
}

/* --------- Media Queries --------- */
@media (min-width: 1024px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    padding: 50px;
  }
  .footer .footer-logo {
    margin-bottom: 0;
  }
  .footer .footer-logo img {
    float: right;
  }
  .footer .footer-menu {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    float: right;
    margin-right: 50px;
    gap: 40px;
  }
  .footer .footer-menu li {
    margin: 0;
  }
  .footer .footer-menu a {
    justify-content: flex-start;
  }
}

/*# sourceMappingURL=footer.css.map */
