.footer {
  /* background-color: #010100; */
  display: flex;
 flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  /* color: #e9e7e7; */
  margin-top: 1rem;
  border-top: 1px solid black;

}

.footer-top {

  width: 100%;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
 
}

.footer-top-img {
height: 90%;
width: auto;
}

.footer-link {
height: 100%;
  display: flex;
  align-items: center;
}

.footer-contact-img {
  height: 70%;
  transition: height 0.5s ease-in-out;
}

.footer-contact-img:hover {
  height: 90%;
}


.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: fit-content;
 
}

.footer-bottom a{
  /* color: #e9e7e7; */
  color: black;
  text-decoration: none;
 
}

.footer-link {
  text-decoration: none;
  color: black;
}

.footer-link:hover {
 text-decoration: underline;
}



