footer {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: #111111;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  padding-top: 2rem;
  width: 90%;
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #bdc0c0;
  margin-top: 2rem;
}

.footer-links {
  display: flex;
  justify-content: start;
  column-gap: 0.6rem;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.footer-links svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: #bdc0c0;
  cursor: pointer;
  transition: 0.2s ease;
}

.footer-links svg:hover {
  fill: #8157c9;
}

.footer-refs {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer-refs span {
  color: #bdc0c0;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-refs div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: start;
  row-gap: 1rem;
  margin-bottom: 1.2rem;
}

.footer-refs div a {
  color: #bdc0c0;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s ease;
  font-weight: 400;
}

.footer-refs div a:hover {
  color: #8157c9;
}

.footer-copyright {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 90%;
  height: 4rem;
  border-top: 1px solid #bdc0c0;
  font-weight: 500;
  color: #989ba2;
}

/* Media Query for any computer */
@media screen and (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    column-gap: 3rem;
  }

  .footer-title {
    margin-top: 0;
  }

  .footer-refs div {
    row-gap: 0.4rem;
  }

  .footer-refs span {
    margin-bottom: 0.4rem;
  }
}