footer {
  font-weight: 400;
  line-height: initial;
  background-color: var(--footer_background);
  border-top: 1px solid var(--footer_separatore);
  color: var(--footer_testo) !important;
}

footer p,
footer a {
  color: var(--footer_testo) !important;
}

.footer_credits {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

footer .footer_content {
  display: flex;
  justify-content: space-between;
}

footer p {
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 900px) {
  footer .footer_content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  footer .footer_credits {
    align-items: center;
    margin-top: 15px;
  }
}