.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 20px;
  background-color: #3D4A44;
  padding: 20px; 
}

.footer-nav ul {
  display: flex;
  gap: 20px; 
  list-style: none; 
  margin: 0; 
  padding: 0; 
}

.footer-copyright p,
.footer-nav a,
.footer-links a {
  text-decoration: none; 
  color: #F5F5DC; 
  font-size: .9em;
}

.footer-links {
  color: #F5F5DC;
}

.footer-nav li a:hover {
  color: #C78738;
}

.footer-links a:hover {
  color: #C78738;
}

.footer-copyright p {
  margin: 0; 
  align-self: center; 
}

@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-nav ul {
    flex-direction: column; 
    gap: 10px; 
  }
}
