footer {
  width: 100%;
  align-items: center;
  background-color: var(--cl-base-black);
}

.footer-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 1em;
}
/* 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; }
}

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

.footer-box.copyright {
  justify-content: flex-start;
}
.footer-box.developer {
  justify-content: flex-end;
}