html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

#page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#content-wrap {
  flex: 1;
}

#footer {
  background: #f7f8f9;
  color: #45505b;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  width: 100%;
  margin-top: auto;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer h3 span {
  color: var(--main-color--);
}

#footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

#footer .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

#footer .social-links a {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}

#footer .social-links a:hover {
  opacity: 0.7;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}
