footer {
  display: flex;
  justify-content: space-around;
  align-self: stretch;
  background-color: #f2f2f7;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 16px;
}

.footer-link {
  font-size: small;
  margin: 16px 0;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-mail {
  font-size: small;
  margin: 16px 0;
}

/* MOBILE */
@media (max-width: 800px) {
  .footer-content {
    flex-direction: column;
  }
}
