/* Footer styles */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #404040;
  color: #e6e6e6;
  padding: 0.75rem 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  font-size: 12px;
  z-index: 1000;
}

.footer p {
  padding: 0px 20px 0 20px;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer {
    position: static;
    padding: 0.65rem 1rem;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 0.5rem 0.75rem;
    font-size: 11px;
    justify-content: center;
  }

  .footer p {
    padding: 0 10px;
  }
}
