#site-footer {
  margin-top: auto;
  padding: 40px 0;
  background-color: var(--footer-background-color);
  color: var(--text-color-1);
}

#footer-logo {
  height: 50px;
}

#footer-top-div1 > a {
  display: flex;
  align-items: center;
  line-height: normal;
  text-align: left;
  font-size: 2rem;
}

#footer-top-div1 > a svg {
  width: 32px;
  height: 32px;
  margin-right: 0;
  flex-shrink: 0;
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

#footer-top-div1 {
  text-align: left;
  max-width: 500px;
}

.footer-social {
  text-align: right;
}

.footer-social a {
  margin-right: 10px;
  color: var(--text-color-1);
}
.footer-social a:hover {
  color: var(--link-color-hover2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 0 28px;
}

#footer-bottom-div1 {
  flex: 1;
  text-align: left;
  margin-bottom: 10px;
}

#footer-bottom-div2 {
  flex: 1;
  text-align: right;
  margin-bottom: 10px;
}

.footer-social small a svg {
  fill: var(--link-color);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  #div2 {
    text-align: left;
    margin-top: 10px;
  }
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-color-scheme: dark) {
  .footer-social small a svg {
    fill: var(--text-color);
  }
}
