.footer {
  width: 100%;
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer.pink-theme {
  background-color: var(--pink);
}

.footer-container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 954px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-inline: 1.25rem;
  color: inherit;
}

@media (min-width: 475px) {
  .footer-container {
    padding-inline: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding-inline: 0;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: inherit;
  font-weight: 400;
  font-size: 1.125rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-text {
  font-weight: 400;
  font-size: 1.125rem;
  color: inherit;
  text-align: center;
}

.bold-text {
  font-weight: bold;
}

.footer-subtext {
  color: inherit;
  font-weight: 400;
  font-size: 13px;
  text-align: center;
}

.footer-note {
  color: inherit;
  font-weight: 400;
  font-size: 13px;
  display: block;
  text-align: center;
}

.footer-bottom {
  background: black;
  width: 100%;
}

.footer-bottom p {
  font-weight: 400;
  font-size: 0.875rem;
  text-align: center;
  max-width: 829px;
  color: white;
  padding: 1.5rem 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 475px) {
  .footer-bottom p {
    padding-inline: 0;
  }
}
