/*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);
  }
}
html {
  scroll-behavior: smooth;
}

html, body {
  padding: 0;
  margin: 0;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  height: 695px;
  width: 100%;
  text-align: center;
}

.hero-header {
  margin-top: 150px;
}

.hero h1 {
  margin-top: 20px;
}

.ht-1 {
  font-family: "Audiowide", sans-serif;
  color: #ffffff;
  font-size: 45px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  margin-bottom: -20px;
  margin-top: 50px;
}

.ht-2 {
  font-family: "Audiowide", sans-serif;
  color: #ffffff;
  font-size: 45px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.2s forwards;
}

.hero-button {
  border-radius: 25px;
  border: none;
  padding: 15px 20px;
  width: 280px;
  height: 65px;
  font-family: "Saira", sans-serif;
  background-color: #2a2a2a;
  color: #f8f8f8;
  font-weight: bold;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.4s forwards;
  margin-top: 170px;
  font-size: 20px;
}

.hero-button a {
  text-decoration: none;
  color: #F5F5F5;
  font-weight: bold;
}

.hero-button:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

@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);
  }
}

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