footer {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 16px;
  margin: 25px 10px;
  max-width: 1920px;
}

footer > div {
  margin-bottom: 15px;
}

footer > div > h4 {
  margin: 5px 0;
}

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

  footer > div {
    display: flex;
    gap: 20px;
    margin: 0;
  }
}

@media screen and (min-width: 1920px) {
  footer {
    margin: 50px auto;
  }
}
