/* Footer Styling */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-left {
  display: flex;
  gap: 15px;
}

.footer-left a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.footer-left a img:hover {
  transform: scale(1.1);
}

footer p {
  font-size: 14px;
  margin: 0;
}

footer .credits {
  font-size: 12px;
  color: #aaa;
  margin-top: 5px;
}

/* Media Query for Larger Screens */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }

  footer p {
    font-size: 16px;
  }

  footer .credits {
    text-align: right;
  }
}
