@font-face {
  font-family: "Dymon";
  src: url("./Dymon-ShouXieTi.otf");
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Dymon";
}
.copyText {
  font-size: 2vw;
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin-top: 1vw;
}
.links {
  position: absolute;
  top: 3vw;
  right: 5vw;
  z-index: 10;
  width: 18vw;
  min-width: 150px;
}
.links-l {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  width: 100%;
  top: 35%;
  left: -5%;
}
.top {
  display: flex;
  justify-content: center;
  gap: 10%;
}
.bottom {
  display: flex;
  justify-content: center;
  gap: 10%;
}
.item {
  width: 20%;
  height: auto;
}
.item img {
  width: 100%;
  height: auto;
  transition: 0.2s ease;
}
.item img:hover {
  transform: scale(1.4);
}
.links-bg {
  width: 100%;
  height: auto;
}
.links-bg img {
  width: 100%;
  height: auto;
}
.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo img {
  width: 60%;
  height: auto;
}
.banner {
  position: relative;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: auto;
  display: block;
}
.word-marquee {
  position: absolute;
  top: 7%;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
  letter-spacing: -1vw;
}
.word-track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  will-change: transform;
  animation-name: wordMarquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.word-track span {
  display: inline-block;
  font-size: 4vw;
  color: #000000;
}
@keyframes wordMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
.second {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10%;
}
.second img {
  width: 45%;
  height: auto;
}
.tokenomiks {
  margin-top: 10vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10vw;
}
.chart {
  width: 100%;
  height: auto;
  display: block;
}
.supply {
  display: block;
  width: 80%;
  height: auto;
}
.tok-a {
  width: 30%;
}
.join {
  display: block;
  width: 35%;
  height: auto;
}
.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}
.info img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4vw;
  justify-items: center;
  align-items: center;
  padding: 4vw 5vw;
}

.footer-top,
.footer-bottom {
  display: contents;
}

.footer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.footer-img {
  width: 40%;
  height: auto;
  transition: 0.2s ease;
}
.footer-img:hover {
  transform: scale(1.2);
}
@media (min-width: 768px) {
  .footer {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5vw;
    padding: 3vw 6vw;
  }
  .footer-img {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .second {
    flex-direction: column;
    gap: 10%;
    margin-top: 10vw;
  }
  .second img {
    width: 90%;
  }
  .copyText {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
  .logo {
    margin-top: 15vw;
  }
  .supply {
    width: 100%;
  }
  .info {
    grid-template-columns: repeat(1, 1fr);
  }
  .join {
    width: 100%;
  }
  .banner img {
    width: 178%;
  }
  .logo img {
    width: 100%;
  }
  .word-track span {
    font-size: 8vw;
  }
}
