footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 1em;
  margin-top: 4em;
  background-color: var(--th-background-1);
}

.footer-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
/* Small */
@media screen and (min-width: 500px) {
  .footer-content { flex-direction: column; }
}
/* Medium */
@media screen and (min-width: 501px) and (max-width: 1199px) {
  .footer-content { flex-direction: column; }
}
/* Large */
@media screen and (min-width: 1200px) {
  .footer-content { flex-direction: row; justify-content: space-between; }
}

.footer-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.footer-box.copyright {
  flex-wrap: wrap;
}
.footer-box.developer {
  flex-wrap: wrap;
}
/* Small */
@media screen and (min-width: 500px) {
  .footer-box.copyright { justify-content: center; }
  .footer-box.developer { justify-content: center; }
}
/* Medium */
@media screen and (min-width: 501px) and (max-width: 1199px) {
  .footer-box.copyright { justify-content: center; }
  .footer-box.developer { justify-content: center; }
}
/* Large */
@media screen and (min-width: 1200px) {
  .footer-box.copyright { justify-content: flex-start }
  .footer-box.developer { justify-content: flex-end }
}

.footer-box p {
  color: var(--th-text-1);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.footer-box p a {
  color: var(--th-highlight);
}
