.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: fit-content;
  margin: 0 auto;
}

.footer-text {
  font-weight: bold;
  font-size: 0.9rem;
  color: rgba(var(--dark), 1);
}

.footer-highlight {
  color: rgba(var(--blue), 1);
}

@media (max-width: 768px) {
  .footer {
    bottom: 10vh;
  }

  .footer-text {
    font-size: 0.8rem;
  }

  .footer-highlight {
    font-size: 0.8rem;
  }
}
