@font-face {
  font-family: tomcat;
  src: url(../fonts/tomcat.otf);
}

@font-face {
  font-family: catboo;
  src: url(../fonts/LightStories.ttf);
}

:root {
  --background-color: #ffffff;
  --background-other: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: tomcat, arial, helvetica, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  background-color: var(--background-color);

}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #28a4e4;
  background-size: contain;
}


header {
  width: 100%;
  padding: 6px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
}

.header-img {
  width: 60px;
}

#hero {

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-img {
  width: 600px;
  /*animation: shake 2s infinite forwards;*/
  position: relative;
  z-index: 1;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    transform: translate(1px, -1px) rotate(0deg);
  }
}

#hero h1 {
  margin-top: -220px;
  font-size: 10rem;
  text-shadow: white 6px 1px;
  -webkit-text-stroke: 2px white;
}

h1 {
  font-size: 2.7rem;
  font-weight: 800;
  z-index: 3;
}

.contract {
  font-family: monospace, system-ui;
  background: white;
  font-weight: 600;
  border-radius: 12px;
  font-size: 1.1rem;
  margin-top: 6px;
  padding: 2px 6px;
  max-width: 90vw;
  white-space: break-spaces;
  text-wrap: wrap;
  overflow-wrap: anywhere;
}

.hero-text {
  width: 80ch;
  text-align: center;
  max-width: 90vw;
  font-family: catboo;
  color: #000000e6;
}

.hero-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.buy-button {
  display: flex;
  color: white;
  font-weight: 500;
  align-items: center;
  position: relative;
  letter-spacing: 0;
  background: black 0 0 no-repeat padding-box;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 1.5s ease-in-out;
  -moz-transition: all 1.5s ease-in-out;
  -o-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
  text-decoration: none;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 0.3rem;
  padding-top: 0.3rem;
  width: fit-content;
  border-radius: 6px;
  color: white;
  font-size: 1.5rem;

}

.icon {
  width: 32px;
}

#about {
  width: 1000px;
  max-width: 90vw;
  margin-top: 120px;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 40px;
}

#about div {
  line-height: 32px;
  font-family: catboo;
  color: #000000e6;
}

#about h1 {
  margin-bottom: 20px;
}

.about-img {
  width: 400px;

  max-width: 90vw;
  border-radius: 12px;
}

.black {
  filter: brightness(0);
}

.htb {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1000px;
  max-width: 90vw;
  gap: 40px;
  z-index: 3;
}

.htb h1 {
  display: flex;
  position: relative;
}

.htb h1 img {
  position: absolute;
  bottom: -40px;
  left: -380px;
}

.htb-row {
  display: flex;
  flex-direction: row;
  background: white;
  border-radius: 18px;
  padding: 18px;
  gap: 40px;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0px 4px #000;
  border: 4px solid black;
}

.htb-img {
  width: 90px;
  object-fit: contain;
  border-radius: 12px;
}

.htb-row svg {
  width: 90px;
  object-fit: contain;
}

.htb-title {
  font-size: 1.5rem;
}

.jsx-ff0aa5fbe096ac0d.boxsContainer {
  display: flex;
  gap: 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

#realtokenomics {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 120px;
  gap: 20px;
}

.htb-text {
  font-size: 1.5rem;
  line-height: 28px;
  font-family: catboo;
}

.htb {
  margin-top: 120px;
}

#tokenomics {
  margin-top: 140px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 80px;

}

#tokenomics h1 {
  text-align: center;
}

#tokenomics img {
  width: 1000px;
  max-width: 90vw;

  height: 600px;
  width: 100%;
  width: 380px;
  object-fit: cover;

  box-shadow: 4px 4px #000;
  border: 2px solid black;
}

.tokenomics-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: absolute;
  margin: auto;
  top: 400px;
  width: 100%;
  font-weight: 500;
  font-size: 2rem;
}

footer {
  width: 100%;
  background-color: white;
  color: black;
  text-align: center;
  padding: 8px;

}

.tweet-row {
  display: flex;
  flex-direction: row;
  max-width: 900px;
  gap: 40px;
  align-items: center;
}


.peakaboo {
  border: unset !important;
  box-shadow: none !important;
  position: absolute;
  bottom: 0;
  right: 80px;
  width: 180px !important;
  height: unset !important;
}

.boxsContainer.jsx-ff0aa5fbe096ac0d .boxContainer.jsx-ff0aa5fbe096ac0d {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;

  justify-content: flex-start;
}

.card.jsx-ff0aa5fbe096ac0d {
  overflow: visible;
  width: 130px;
  height: 130px;
  font-family: Arial;
}

.content.jsx-ff0aa5fbe096ac0d {
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 300ms;
  -moz-transition: -moz-transform 300ms;
  -o-transition: -o-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: -moz-transform 300ms;
  transition: -o-transform 300ms;
  transition: transform 300ms;
  -webkit-box-shadow: 0px 0px 1px 3px #000e;
  -moz-box-shadow: 0px 0px 1px 3px #000e;
  box-shadow: 0px 0px 1px 3px #000e;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border-radius: 16px;
  box-shadow: 0px 4px #000;
  border: 4px solid black;

}

.jsx-ff0aa5fbe096ac0d.desc {
  font-size: 18px;
}

.back.jsx-ff0aa5fbe096ac0d {
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;

  background: white;
  border-radius: 12px;
}

.back.jsx-ff0aa5fbe096ac0d::before {
  position: absolute;
  content: " ";
  display: block;
  width: 160px;
  height: 160%;
  background: -webkit-linear-gradient(left, transparent, var(--mainCyan), var(--mainCyan), var(--mainCyan), var(--mainCyan), transparent);
  background: -moz-linear-gradient(left, transparent, var(--mainCyan), var(--mainCyan), var(--mainCyan), var(--mainCyan), transparent);
  background: -o-linear-gradient(left, transparent, var(--mainCyan), var(--mainCyan), var(--mainCyan), var(--mainCyan), transparent);
  background: linear-gradient(90deg, transparent, var(--mainCyan), var(--mainCyan), var(--mainCyan), var(--mainCyan), transparent);
  -webkit-animation: rotation_481 5e3ms infinite linear;
  -moz-animation: rotation_481 5e3ms infinite linear;
  -o-animation: rotation_481 5e3ms infinite linear;
  animation: rotation_481 5e3ms infinite linear;
}

footer {
  font-family: 'catboo';
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}

.footer-img {
  width: 200px;
}

footer h1 {
  margin-top: -50px;
  text-shadow: white 2px 1px;

}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

@keyframes rotation_481 {
  0% {
    -webkit-transform: rotatez(0deg);
    -moz-transform: rotatez(0deg);
    transform: rotatez(0deg);
  }

  0% {
    -webkit-transform: rotatez(360deg);
    -moz-transform: rotatez(360deg);
    transform: rotatez(360deg);
  }
}

@media screen and (max-width: 900px) {
  #about {
    grid-template-columns: repeat(1, 1fr);
  }

  h1 {
    text-align: center;
  }
}

@media screen and (max-width: 600px) {

  #hero h1 {
    margin-top: unset;
    font-size: 5rem;
  }

  h1 {
    font-size: 5rem;
  }

  #about {
    grid-template-columns: repeat(1, 1fr);
  }

  .htb-row {
    flex-direction: column;
    max-width: 90vw;
  }

  .htb-text {
    max-width: 90vw;
  }

  #tokenomics h1 {
    font-size: 4rem;
  }

  #htb h1 {
    font-size: 3rem;
  }

  .tokenomics-text {
    top: unset;
  }



  .tweet-row {
    display: flex;
    flex-direction: column;
  }

  #about h1 {
    line-height: 80px;
  }
}