* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.abovefold {
  height: 100vh;
  background-image: radial-gradient(
    circle at top right,
    rgb(132, 132, 132),
    rgb(19, 19, 19) 40%,
    rgb(7, 7, 7) 85%
  );
  display: flex;
  flex-direction: column;
}
.top-cta {
  width: 100%;
  height: 35px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-cta span {
  font-size: 0.7em;
  color: white;
  font-family: "aaux-next", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
}
.top-cta a {
  text-decoration: none;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
}
.logo {
  width: 180px;
  padding-left: 40px;
}
.nav-btn {
  display: flex;
  align-items: center;
  margin-right: 40px;
  font-family: "aaux-next", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.95em;
}
.nav-btn a {
  color: white;
  text-decoration: none;
}
.nav-btn button a {
  color: black;
}
.nav-btn button {
  margin-left: 20px;
  padding: 5px 15px;
  border-radius: 10px;
  border: none;
  font-family: "aaux-next", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 0.95em;
}
.abovefold .hero {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 40px;
}
.hero img {
  display: flex;
  width: 800px;
  transform: translateY(250px);
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
  max-width: 100%;
  height: auto;
  display: block;
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
hr {
  margin: 0 auto;
  width: calc(100vw - 50px);
  height: 3px;
  border: none;
  background-color: rgb(28, 28, 28);
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 5px 40px;
}
.footer a {
  text-decoration: none;
  color: white;
  font-family: "aaux-next", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.7em;
  letter-spacing: 2px;
}
.arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  height: 35px;
  width: 35px;
  border-radius: 22.5px;
}
