@font-face {
  font-family: "Profont";
  src: url(../fonts/Profontwindows.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Profont", sans-serif;
  font-size: 28px;
}
html,
body {
  scroll-behavior: smooth;
}
body {
  width: 100vw;
  overflow-x: hidden;
  background: #1f9909;
}
img {
  max-width: 100%;
}
a {
  color: #fff;
  text-decoration: none;
}
ul {
  list-style: none;
}
#main,
#about {
  height: 100vh;
}
#main,
#about,
#tokenomics {
  position: relative;
}
.wrapper {
  width: 1600px;
  margin: 0 auto;
}
header {
  padding-top: 40px;
  color: #fff;
}
header ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid rgb(255, 255, 255);
  padding: 0 20px;
  padding-bottom: 10px;
}
header ul li a {
  opacity: 0.4;
}
header ul li a:hover {
  opacity: 1;
}
.main-container {
  display: flex;
  align-items: center;
}
.logo {
  animation: pulse 1s linear infinite;
  z-index: 4;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.main-container img {
  width: 50%;
}
.main-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);
}
.code {
  color: #FFF7E6;
  background: none;
  outline: none;
  border: none;
  outline-offset: none;
  width: 600px;
  cursor: pointer;
}
.code.untouchable {
  pointer-events: none;
}
.socials ul {
  display: flex;
  align-items: center;
  column-gap: 40px;
  justify-content: center;
}
.about-container {
  display: flex;
  padding-top: 50px;
}
.about-container div {
  width: 50%;
}
.am {
  width: 600px;
}
.about-container p {
  width: 600px;
  text-align: center;
  margin-top: 40px;
}
p {
  color: #fff;
}
.tokenomics-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tkn {
  display: block;
  margin: 0 auto;
}
footer {
  padding: 30px 0;
  text-align: center;
}
@media (max-width: 1700px) {
  .wrapper {
    width: 1200px;
  }
  .tokenomics-container img {
    width: 500px;
  }
}
@media (max-width: 1240px) {
  .wrapper {
    width: 960px;
  }
  header {
    padding-top: 20px;
  }
  * {
    font-size: 20px;
  }
  .about-container p {
    width: 100%;
  }
  .tkn {
    width: 70%;
  }
}
@media (max-width: 1000px) {
  .wrapper {
    width: 92%;
  }
  header ul {
    border-bottom: none;
    border-top: 3px solid rgb(255, 255, 255);
    padding-top: 10px;
    flex-direction: column;
    row-gap: 20px;
  }
  .main-container {
    position: relative;
  }
  .main-container img {
    width: 100%;
  }
  .logo {
    position: absolute;
    width: 80% !important;
    left: 50%;
    transform: translateX(-50%) !important;
    animation: logo 2s linear infinite;
  }
  @keyframes logo {
    0% {
      opacity: 100%;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 100%;
    }
  }
  .main-bottom {
    flex-direction: column-reverse;
    row-gap: 50px;
  }
  .code {
    width: 100%;
  }
  .about-container {
    flex-direction: column;
    position: relative;
    gap: 30px;
    padding: 30px 10px 0 10px;
    background: rgba(34, 34, 34, 0.7);
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.15);
  }
  .about-container > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-container p {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 12px;
    margin-top: 18px;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  }
  .am {
    position: absolute;
    top: 0;
  }
  .about-container p {
    margin-top: -30px;
  }
  .tokenomics-container {
    padding-top: 30px;
    flex-direction: column;
    row-gap: 15px;
  }
  .tokenomics-container img {
    order: 4;
  }
  .footer-logo {
    width: 250px;
  }
}
