footer {
  background: var(--deep-teal);

  color: white;

  text-align: center;

  padding: 80px 20px 35px;
}
.footer-brand h2 {
  font-size: 3rem;

  margin-bottom: 20px;
}
.footer-brand p {
  color: var(--yellow);

  font-size: 1.1rem;

  margin: 8px 0;
}
.footer-social {
  display: flex;

  justify-content: center;

  gap: 35px;

  margin: 40px 0;
}
.footer-social a {
  color: white;

  font-size: 1.8rem;

  transition: 0.3s;
}
.footer-social a:hover {
  color: #8ca891;

  transform: translateY(-3px);
}
.footer-divider {
  width: 100%;

  max-width: 900px;

  height: 1px;

  background: rgba(255, 255, 255, 0.12);

  margin: 45px auto;
}
.copyright {
  color: #bfbfbf;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-size: 0.85rem;
}
.footer-links {
  display: flex;

  justify-content: center;

  gap: 45px;

  margin-top: 35px;

  flex-wrap: wrap;
}
.footer-links a {
  color: var(--yellow);

  text-decoration: none;

  font-size: 1rem;

  transition: 0.3s;
}
.footer-links a:hover {
  color: #8ca891;
}
