:root {
  --background: #ffffff;
  --foreground: #171717;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

html,
body {
  max-width: 100vw;
  overflow: visible;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  min-height: 100svh;
  gap: 64px;
  font-family: var(--font-geist-sans);
  width: 100%;
}

.main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  background-color: rgba(255, 165, 0, 0.5);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 10px;
  background-color: rgba(242, 242, 242, 0.729);
  padding: 20px 4vw;
}

.nav p {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

.nav div {
  display: flex;
  gap: 24px;
}

.navSocials img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.navSocials img:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .nav {
    gap: 10px;
    flex-direction: column;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  height: calc(100svh - 150px);
  width: 100%;
  padding: 100px 30px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-weight: 700;
  font-size: 55px;
  line-height: 64px;
  color: rgb(128, 83, 0);
}

.hero p {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: rgb(128, 83, 0);
}

.hero div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero div button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  border: unset;
  cursor: pointer;
  background-color: #000;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.hero div button:hover {
  transform: scale(
    1.1,
    1
  ); /* Scales the element to 150% of its original width, no change in height */
}

.imagesTop {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.imagesTop img {
  height: auto;
  width: 300px;
  object-fit: contain;
  border-radius: 10px;
  border: 4px solid rgb(128, 83, 0);
  transition: all 0.2s ease-in-out;
}

.imagesTop img:nth-of-type(2) {
  width: 40%;
  min-width: 300px;
}

.imagesTop img:hover {
  transform: scale(1.1);
}

.groupedInfoTokenomics {
  display: flex;
  gap: 100px;
  width: 100%;
  align-items: center;
  padding: 80px;
  margin-top: 10vh;
}

.tokenInfo {
  width: 80%;
  min-width: 200px;
  border: 2px solid rgb(128, 83, 0);
  border-radius: 10px;
  padding: 20px;
  flex: 1;
}

@media (max-width: 900px) {
  .groupedInfoTokenomics {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }
}

.tokenomics {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  color: #fff;
  background-color: rgb(128, 83, 0);
  padding: 20px;
  border-radius: 5px;
}

.tokenomics p {
  margin: 0;
  padding: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  border: 2px solid #fff;
  border-radius: 10px;
}

.roadmap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
  margin-top: 10vh;
  min-width: 200px;
}

@media (max-width: 600px) {
  .roadmap {
    width: 100%;
    padding: 0 10px;
  }

  .roadmapContainer div {
    width: 100%;
  }
}

.roadmap h2 {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  color: rgb(128, 83, 0);
}

.roadmapContainer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: center;
}

.roadmapContainer div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 4px solid rgb(128, 83, 0);
  border-radius: 10px;
  width: 50%;
  min-width: 200px;
  padding: 10px;
}

@media (max-width: 1000px) {
  .footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.footer {
  display: flex;
  gap: 40px;
  padding: 40px;
  margin-top: 10vh;
}

.footer img {
  width: 40%;
  min-width: 200px;
  height: auto;
  border-radius: 10px;
}

.footer div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer div h2 {
  margin: 0;
  font-weight: 700;
  font-size: 50px;
  color: rgb(128, 83, 0);
}

.footer div p {
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #000;
}
