footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--main-color);
  color: var(--text-color-white);
  padding: 14px 35px;
}

.mentions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 550px) {
  .mentions {
    flex-direction: row;
    justify-content: center;
    gap: 35px;
  }
}

@media screen and (min-width: 768px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .mentions {
    gap: 42px;
  }
}
