/* Footer */
footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  margin-left: 250px;
  font-size: 13px;
}

footer p {
  margin: 0;
}

footer a {
  color: #667eea;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #764ba2;
  text-decoration: underline;
}

@media (max-width: 768px) {
  footer {
    margin-left: 200px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  footer {
    margin-left: 150px;
    font-size: 11px;
    padding: 15px;
  }

  footer p {
    line-height: 1.6;
  }
}