footer {
  width: 100%;
  background-color: var(--dark-charcoal);
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}

.footer-containers {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: yeellow;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.footer-left-container {
  background-color: aquea;
  width: 50%;
}
.footer-links {
  display: flex;
  flex-direction: column;
  background-color: greay;
  align-items: center;
  width: 100%;
  height: auto;
  align-self: center;
}
#footer-left-links {
  line-height: 3rem;
}
#footer-right-links {
  gap: 2rem;
  width: 50%;
  display: flex;
  background-color: broewn;
  align-items: start;
}
.footer-right-container {
  display: flex;
  flex-direction: column;
  background-color: oraenge;
  justify-content: center;
  width: 50%;
}
footer h1 {
  color: white;
  font-size: 2.5rem;
}
.footer-containers {
  background-color: blaeck;
}
.footer-right-container img {
  height: 25px;
  width: auto;
  display: block;
}
.footer-right-container a {
  background-color: greeen;
  gap: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer a {
  text-decoration: none;
  color: white;
}
.footer-links :hover {
  color: #caac00;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  footer h1 {
    font-size: 2rem;
  }
  #footer-left-links {
    line-height: 2rem;
  }
  .footer-containers {
    flex-direction: column;
    align-items: center;
  }
  .footer-right-container {
    width: 100%;
  }
  #footer-right-links {
    gap: 5px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .footer-links {
    margin-bottom: 20px;
  }
}
