.footer {
  background-color: #000;
  color: white;
  padding: 2em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));

  grid-template-rows: repeat(4, auto);

  gap: 2rem;
  align-items: start;
}
.footer__info > h3 {
  font-size: 1.3rem;
  margin-bottom: 1em;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.contact {
  grid-column: 1/3;
  word-break: break-all;
}
.contact > a {
  color: white;
}
.copyright {
  grid-column: 1/3;
}
