.footcontainer{
  background-color:#0b3d0b;
  width: 100%;
  color: white;
  padding: 20px 10px;
  text-align: center;
}


.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  margin: 10px 15px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #b9fbc0;
}

.footer-links a img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.footer-credits p {
  font-size: 14px;
}

.copyrights{
  color: white;
 
}



/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-links {
      flex-direction: column;
  }

  .footer-links a {
      margin: 10px 0;
  }
}