footer {
  background-color: #81e18c;
  text-align: center;
}

footer h2, footer p {
  color: black;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #ffffff8f;
  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.information {
  margin-left: 20px;
  text-align: left;
}

.information img {
  width: 34px;
  height: 34px;
  margin-right: 15px;
  transition: background-color 0.4s;
  @media screen and (max-width: 768px) {
    margin-bottom: 20px;
  }
}

.information img:hover {
  background-color: #ffffff8f;
}

.footer-content nav {
  display: flex;
  justify-content: center;
  @media screen and (max-width: 768px) {
    display: none;
  }
}

.footer-content nav a {
  font-weight: bold;
  color: black;
  margin-right: 30px;
  transition: color 0.4s;
  text-decoration: none;
}

.footer-content nav a:hover {
  color: #ffffffd4;
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    font-size: 0.8rem;
  }
}
.footer-bottom p{
  margin: 0;
}