/*Specific fonts' styles*/
@import url("https://fonts.googleapis.com/css2?family=Anta&family=Audiowide&family=Electrolize&family=Geo:ital@0;1&family=Orbitron:wght@400..900&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&family=Zen+Dots&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Iceberg&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prosto+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}
.footer {
  background-color: #000000;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 1.3rem;
  margin-top: -50px;
}

.footer-links a {
  text-decoration: none;
  font-family: "Tektur", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #ffcc00;
}

.copy-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-top: 40px;
}

.copy-container h3 {
  font-family: "Zen Dots", sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 400;
  margin: 0.5rem 0;
}

.dev-link {
  text-decoration: none;
  color: #939393;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.dev-link:hover {
  color: #6e6e6e;
}

/*# sourceMappingURL=footer.css.map */
