/*-- style --*/

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Nerko One", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: var(--clr-2);
  background-color: var(--clr-3);

  overflow-x: hidden;
}

header,
footer,
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer {
  padding-inline: 2rem;
  padding-block: 2rem;
}
section {
  padding-inline: 2rem;
  padding-block: 10rem;
}
.container {
  width: 1200px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.description {
  width: 80%;
  text-align: center;
  margin-bottom: 5rem;
}
.ca {
  white-space: nowrap;
  overflow: hidden;
}

/*-- buttons --*/

button {
  min-width: 240px;
  padding: 1rem 2rem;

  background-color: transparent;
  border: none;
  border-radius: 2rem;

  transition: 300ms;
  cursor: pointer;
  white-space: nowrap;
}

.btn-1 {
  color: var(--clr-2);
  background-color: #ffffff;
  border: solid 4px #111111;
}
.btn-2 {
  color: var(--clr-2);
  background-color: transparent;
  border: solid 3px var(--clr-2);
}

.btn-flex {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 1rem;

  margin-top: 1rem;
}

/*-- header --*/

#header {
  position: fixed;
  z-index: 10;
  top: 0;

  width: 100%;
  padding-inline: 2rem;
  padding-block: 0.5rem;

  background-color: var(--clr-3-dark);

  animation: header-scroll linear forwards;
  animation-timeline: view();
  animation-range-start: 100svh;
  animation-range-end: 150svh;
}

#header img {
  width: 3rem;
}

#main-menu {
  width: 100%;
  padding-inline: 2rem;
  padding-block: 0.5rem;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;

  background-color: var(--clr-3-dark);
  border-radius: 2rem;
}

#header-logo {
  display: none;
}

@keyframes header-scroll {
  100% {
    background-color: transparent;
  }
}

/*-- hero --*/
/*-- hero --*/
/*-- hero --*/

#hero {
  padding-top: 15rem;
  padding-bottom: 0;

  background-color: var(--clr-3);

  text-wrap: balance;

  overflow: hidden;
}
#hero-box {
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}
#hero-box img {
  width: 500px;
  margin-bottom: -50%;

  transition: 300ms;
}

#hero-box img:hover {
  transform: translateY(-1rem);
}

/*-- about --*/
/*-- about --*/
/*-- about --*/

#about {
  padding-bottom: 0;

  background-color: #b39f24;
  overflow: hidden;
}
#about-box {
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}
#about-box img {
  width: 500px;
  margin-bottom: -50%;

  transition: 300ms;
}
#about-box img:hover {
  transform: translateY(-1rem);
}
#about-box div {
  margin-bottom: 2rem;
}
#about-box h2 {
  margin-bottom: 1rem;
}

/*-- token --*/
/*-- token --*/
/*-- token --*/

#token {
}
#token-box {
  width: 100%;
  margin-top: 7rem;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

#token-box > div {
  padding: 2rem;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;

  text-align: center;

  background-color: var(--clr-3-dark);
  border-radius: 2rem;
}
#token-box > div img {
  width: 150px;
  margin-top: -7rem;
}

#token .ca {
  width: 100%;
  margin-top: 2rem;
  padding: 1rem 2rem;

  background-color: #b39f24;
  border-radius: 2rem;
}

/*-- buy --*/
/*-- buy --*/
/*-- buy --*/

#buy {
  background-color: var(--clr-3-dark);

  text-align: center;
}
#buy-box {
  width: 100%;
  margin-top: 5rem;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

#buy-box > div {
  padding: 2rem;

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;

  text-align: center;

  background-color: var(--clr-3);
  border-radius: 2rem;
}

#buy-box > div h1 {
  margin-top: -7rem;
}

/*-- join --*/
/*-- join --*/
/*-- join --*/

#join {
  text-align: center;
}
#join h1 {
  margin-bottom: 2rem;
}
#join-box {
  width: 80%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#join-box p {
  margin-bottom: 1rem;
}
