.footer {
  padding: 2rem;
  width: 100%;

  bottom: 0;
  background-color: var(--darkblue);
}
.footer_title {
  color: var(--white);
  font-size: var(--fs-base);
}
.footer_contact-wrapper {
  display: flex;
  flex-direction: column;
}
.contact {
  color: var(--white);
}
.contact-link {
  font-weight: bold;
  color: var(--white);
  font-style: italic;
}
.contact-description {
  color: var(--white);
}
.contact-description-link {
  font-style: italic;
  color: firebrick;
  font-weight: bold;
}
/* mq for footer */
@media (min-width: 790px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer_title,
  .footer_contact-wrapper {
    text-align: center;
    margin-top: 0.5rem;
  }
  .footer_title {
    font-size: var(--fs-md);
  }
}
