footer {
  background-color: var(--secondary-color);
  padding: 20px 0;
}
footer .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
footer .content p,
footer .content a {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--lightgray-color);
}
footer .content .hrefsContainer {
  display: flex;
  flex-direction: column;
}
footer .content a {
  text-decoration: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
footer .content p {
  max-width: 424px;
}

@media (max-width: 1000px) {
  footer .content {
    flex-direction: column;
    gap: 30px;
  }
  footer .content .hrefsContainer {
    width: 100%;
  }
  footer .content p,
  footer .content a {
    width: 100%;
    max-width: 100%;
  }
  footer .content p span,
  footer .content a span {
    width: 100%;
    display: block;
    font-weight: 400;
  }
  footer .content a.developer {
    text-align: right;
  }
}/*# sourceMappingURL=footer.css.map */