.footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  height: 17dvh;
  align-items: center;
  background: #101010;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__element {
  margin-bottom: 6px;
}
.footer__link {
  color: white;
  font-size: 1.5rem;
}

.footer__social {
  font-size: 3rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    height: 24dvh;
  }
}
