.site-footer {
  background-color: var(--color-primary);
  color: hsl(235 98% 90% / 1);
}

.site-footer-top {
  display: flex;
  justify-content: space-between;
  padding-block: 1.5rem 1rem;
}
.site-footer-top .header-logo {
  opacity: .85;
}
.other-projects {
  display: flex;
  gap: 2rem;
}
.other-projects a {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid hsl(235 30% 45% / 1);
  border-radius: 4px;
  padding: 4px 16px 4px 12px;
  color: hsl(235 98% 90% / 1);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  transition: background-color .25s;
}
.other-projects a:hover {
  background-color: var(--color-secondary);
  color: #fff;
}
.other-projects div {
  margin-top: 5px;
}
.other-projects img {
  width: 54px;
  height: 54px;
  object-fit: scale-down;
}
@media (max-width: 750px) {
  .site-footer-top {
    justify-content: center;
  }
  .other-projects {
    flex-direction: column;
    gap: 1rem;
  }
  .other-projects a {
    justify-content: center;
  }
  .site-footer-top-logo,
  .site-footer-top .header-logo {
    display: none;
  }
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid hsl(235 30% 45% / 1);
}
@media (max-width: 800px) {
  .site-footer .site-footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  .copyright {
    order: 1;
  }
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--color-secondary);
}
@media (min-width: 801px) {
  .footer-links {
    margin-left: auto;
    margin-right: 2rem;
  }
}
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 3px;
  color: var(--color-primary);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.socials svg {
  transition: background-color .25s;
}
.socials a:hover {
  color: #fff;
  background-color: var(--color-secondary);
}
