@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap");

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: clamp(16px, 2vw, 32px) clamp(20px, 4vw, 48px);
  row-gap: clamp(14px, 2vw, 24px);
  background-color: black;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

footer a:hover,
footer a:focus {
  color: #5AB3E9;
}

.footer-left {
  display: flex;
  gap: 18px;
}

.footer-center {
  display: flex;
  gap: clamp(18px, 2vw, 25px);
}

.footer-center img {
  width: 27px;
  height: 27px;
  display: block;
}

.footer-center a:hover img {
  opacity: 0.6;
}

.footer-right {
  display: flex;
  gap: 24px;
}

#footer-copyright {
  margin-right: 14px;
}


@media (max-width: 900px) {
  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    justify-content: center;
  }

}

@media (max-width: 600px) {
  footer {
    padding: 32px 18px;
    gap: 26px;
  }

  .footer-right {
    flex-direction: column;
    gap: 14px;
  }
  

  .footer-center {
    gap: 22px;
  }
}

