@font-face {
  font-family: Pixel;
  src: url(fonts/pixelfont.001.ttf);
}

* {
  font-family: Impact, Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("images/HEYYEYAAEYAAAEYAEYAAbg.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

body {
  background-color: black;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: black;
  font-weight: bolder;
}

hr {
  border: 0;
  width: 65rem;
  height: 3px;
  background: white;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* ----------------------------- LOADING PAGE ----------------------------- */

#preloader {
  background: #000;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloadimage {
  background-image: url("images/heloading.gif");
  background-size: contain;
  display: inline-block;
  width: 150px;
  height: 150px;
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  animation: wdszoom0 1s linear 0s infinite alternate;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes wdszoom0 {
  100% {
    transform: scale(0.8);
  }
}

/* ----------------------------- SPLASH PAGE ----------------------------- */

.splashBackground {
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.splash {
  width: 25rem;
  height: auto;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f7d05e;
  transition: all ease-in-out 1000ms;
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

.hidden {
  transition: 0.5s;
  display: none;
}

@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, -2px) rotate(-1deg);
  }
}

.splashtop {
  display: flex;
  width: 100%;
  padding: 1rem 1rem 0 1rem;
}

.splashtopmessage {
  width: 100%;
  text-align: center;
}

.splashtopsplit {
  display: flex;
  align-items: center;
  margin: 1rem;
  background-color: white;
  height: 7.5rem;
  padding: 1rem;
}

.splashbtns {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding-bottom: 1rem;
}

.splashbtnexit {
  cursor: pointer;
  background-color: white;
  padding: 0.1rem 0.2rem;
}

.splashbtnone,
.splashbtntwo {
  cursor: pointer;
  background-color: white;
  padding: 0.5rem 3rem;
  border-radius: 0.5rem;
}

.splashbtnone:hover,
.splashbtntwo:hover,
.splashbtnexit:hover {
  background-color: #e7e7e7;
}

.splashtext {
  font-size: 1.25rem;
}

.heicon {
  height: auto;
  width: 6rem;
  margin-left: 1rem;
}

.splashquestion {
  font-size: 1.5rem;
  text-align: center;
  margin-left: 1rem;
}

/* ----------------------------- Header ----------------------------- */

header {
  width: 100vw;
  position: fixed;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.headerLogo {
  color: #fff;
  font-family: Pixel, Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  padding-top: 1rem;
  padding-left: 1rem;
}

.buyBtn {
  margin-right: 1rem;
  margin-top: 1rem;
  border: 1px solid black;
  border-radius: 1rem;
  background-color: white;
  cursor: pointer;
}

.buyBtn:hover {
  scale: 1.05;
}

.buyBtnText {
  font-family: Pixel, Arial, Helvetica, sans-serif;
  font-size: 2rem;
  padding: 0 2rem;
  line-height: 0;
}

/* ----------------------------- Home ----------------------------- */

.homeSection {
  animation: none;
}

.homeSection.shake {
  animation: tilt-n-move-shaking 0.5s infinite;
}

.heGrind {
  background-image: url(images/he-man-grind.gif);
  background-size: contain;
  display: inline-block;
  width: 5.2rem;
  height: 10rem;
  margin-left: 60rem;
  transform: scaleX(-1);
  position: absolute;
}

.homePage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20rem;
  height: 100%;
  gap: 0.5rem;
}

@keyframes tilt-n-move-shaking {
  0% {
    transform: translate(2px, 2px) rotate(0deg);
  }
  10% {
    transform: translate(-2px, -4px) rotate(-1deg);
  }
  20% {
    transform: translate(-6px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(6px, 4px) rotate(0deg);
  }
  40% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  50% {
    transform: translate(-2px, 4px) rotate(-1deg);
  }
  60% {
    transform: translate(-6px, 2px) rotate(0deg);
  }
  70% {
    transform: translate(6px, 2px) rotate(-1deg);
  }
  80% {
    transform: translate(-2px, -2px) rotate(1deg);
  }
  90% {
    transform: translate(2px, 4px) rotate(0deg);
  }
  100% {
    transform: translate(2px, -4px) rotate(-1deg);
  }
}

.titleContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100vw;
}

.heHeadBorder {
  border: 4px solid rgb(255, 252, 246);
  border-radius: 1rem;
  box-shadow: 0 0 15px 5px rgb(255, 234, 0);
  width: 7rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spinner 5s linear infinite;
}

.heHead {
  background-image: url(images/hehead.png);
  background-size: contain;
  display: inline-block;
  width: 4.35rem;
  height: 5rem;
  filter: saturate(2);
}

@keyframes spinner {
  from {
    transform: rotatez(Odeg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

.title {
  font-size: 7.5rem;
  color: #fff;
  text-shadow: 10px 10px #c64182;
  animation: wdszoom0 1s linear 0s infinite alternate;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes wdszoom0 {
  100% {
    transform: scale(0.9);
  }
}

.titleMobileContainer {
  display: none;
}

.ticker {
  border: 3px solid black;
  border-radius: 3rem;
  padding: 0rem 3rem;
  background-color: white;
  box-shadow: 0 0 30px 10px rgb(255, 221, 0);
  animation: flicker 0.25s infinite alternate;
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.tickerText {
  font-size: 3rem;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
}

.slogan {
  font-size: 2rem;
  margin-top: 2rem;
  animation: rainbow 1s linear;
  animation-iteration-count: infinite;
}

@keyframes rainbow {
  100%,
  0% {
    color: rgb(255, 0, 0);
  }
  8% {
    color: rgb(255, 127, 0);
  }
  16% {
    color: rgb(255, 255, 0);
  }
  25% {
    color: rgb(127, 255, 0);
  }
  33% {
    color: rgb(0, 255, 0);
  }
  41% {
    color: rgb(0, 255, 127);
  }
  50% {
    color: rgb(0, 255, 255);
  }
  58% {
    color: rgb(0, 127, 255);
  }
  66% {
    color: rgb(0, 0, 255);
  }
  75% {
    color: rgb(127, 0, 255);
  }
  83% {
    color: rgb(255, 0, 255);
  }
  91% {
    color: rgb(255, 0, 127);
  }
}

.playMusic {
  margin-top: 2rem;
  border: 2px solid black;
  border-radius: 0.75rem;
  background-color: white;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 0 30px 10px rgb(255, 221, 0);
  margin-right: 50rem;
  cursor: pointer;
  font-size: 1rem;
}

.playMusic:hover {
  scale: 1.05;
}

/* ----------------------------- Contract Address ----------------------------- */

.CASection {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}

.CABorder {
  width: 40rem;
  border: 5px solid black;
  background-color: white;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 0.5rem;
  animation: tilt-shaking 0.5s infinite;
}

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2.5deg);
  }
  50% {
    transform: rotate(0eg);
  }
  75% {
    transform: rotate(-2.5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.addressTitle {
  font-family: Pixel, Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  align-self: start;
  animation: wdszoom0 1s linear 0s infinite alternate;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes wdszoom0 {
  100% {
    transform: scale(0.9);
  }
}

#copyaddress {
  font-family: Pixel, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  background-color: black;
  padding: 1rem 1rem;
  border-radius: 0.25rem;
}

.address {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.address:hover {
  scale: 1.025;
}

.copyContainer {
  font-family: Pixel, Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  gap: 0.5rem;
}

.copyContainer:hover {
  scale: 1.05;
  text-decoration: underline;
}

#btn-copy {
  width: 30px;
}

/* ----------------------------- SOCIALS ----------------------------- */

.socialPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.dsContainer,
.xContainer,
.pfContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid white;
  width: 60rem;
  font-size: 2rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  gap: 2rem;
  color: white;
  animation: wdszoom0 1s linear 0s infinite alternate;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes wdszoom0 {
  100% {
    transform: scale(0.95);
  }
}

.dsContainer:hover,
.xContainer:hover,
.pfContainer:hover {
  scale: 1.025;
  transition: transform 0.5s ease-in-out;
}

.dsContainer {
  background-color: black;
}

.xContainer {
  background-color: #1da1f2;
}

.pfContainer {
  background-color: rgb(0, 183, 67);
}

.linklogos {
  width: 30px;
  height: auto;
  margin: 1px;
  /* transition: transform 0.2s;
  animation: fadeIn 3s; */
}

/* .linklogos:hover {
  transform: scale(1.1);
} */

.joinUsContainer {
  width: 55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
  margin-top: 2rem;
  background-color: rgb(224, 247, 255);
  box-shadow: 0 0 15px 5px rgba(224, 247, 255, 1);
}

.joinUsText {
  font-family: Pixel, Arial, Helvetica, sans-serif;
  font-size: 7.5rem;
  font-weight: 700;
  text-align: center;
}

.x2logo {
  filter: invert(1);
}

.joinUsLogos {
  width: 60px;
  height: auto;
  margin: 1px;
}

.joinUsLower {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.txContainer,
.pf2Container {
  background-color: #fff;
  box-shadow: 0 0 15px 5px #fff;
  width: 100%;
  padding: 1rem;
  cursor: pointer;
}

.txContainer:hover,
.pf2Container:hover {
  scale: 1.025;
}

.txContainer h1,
.pf2Container h1 {
  font-size: 2.5rem;
  font-family: Pixel, Arial, Helvetica, sans-serif;
}

.txContainer h2,
.pf2Container h2 {
  font-family: Pixel, Arial, Helvetica, sans-serif;
}

/* ----------------------------- FOOTER ----------------------------- */

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}

.runningMan {
  background-image: url(images/runningMan.gif);
  background-size: contain;
  display: inline-block;
  width: 7.5rem;
  height: 7.5rem;
  filter: saturate(2);
  animation: slideAcross 5s linear infinite;
}

@keyframes slideAcross {
  from {
    transform: translateX(100vw); /* Start off-screen to the left */
  }
  to {
    transform: translateX(-100vw); /* End off-screen to the right */
  }
}

/* ----------------------------- HOME RESPONSIVE ----------------------------- */

@media (max-width: 1365px) {
  .headerLogo {
    display: none;
  }

  header {
    width: 100vw;
    position: fixed;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
  }

  .title {
    font-size: 5rem;
  }

  .tickerText {
    font-size: 2rem;
  }

  .slogan {
    font-size: 2rem;
  }

  .playMusic {
    margin-right: 25rem;
  }

  .heGrind {
    margin-left: 25rem;
  }
}

@media (max-width: 1000px) {
  .title {
    display: none;
  }

  .titleMobileContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .titleMobile {
    font-size: 5rem;
    color: #fff;
    text-shadow: 10px 10px #c64182;
    animation: wdszoom0 1s linear 0s infinite alternate;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }

  .heHeadBorder {
    width: 7rem;
    height: 7rem;
  }

  .heHead {
    width: 4.35rem;
    height: 5rem;
  }

  .tickerText {
    font-size: 1.75rem;
  }

  .slogan {
    font-size: 1.5rem;
  }

  .playMusic {
    margin-right: 20rem;
  }

  .heGrind {
    margin-left: 20rem;
  }

  /* ----------------------------- CA RESPONSIVE ----------------------------- */

  .CABorder {
    width: 30rem;
  }

  .addressTitle {
    font-size: 1rem;
  }

  #copyaddress {
    font-size: 1rem;
    padding: 1rem 2.5rem;
  }

  .copyContainer {
    font-size: 1rem;
  }

  /* ----------------------------- SOCIALS RESPONSIVE ----------------------------- */

  hr {
    width: 30rem;
  }

  .dsContainer,
  .xContainer,
  .pfContainer {
    width: 35rem;
    font-size: 1rem;
  }

  .linklogos {
    width: 25px;
  }

  .joinUsContainer {
    width: 30rem;
  }

  .joinUsText {
    font-size: 4rem;
  }

  .joinUsLogos {
    width: 45px;
  }

  .txContainer h1,
  .pf2Container h1 {
    font-size: 2rem;
  }
}

/* ----------------------------- 600 RESPONSIVE ----------------------------- */

@media (max-width: 600px) {
  .homePage {
    padding-top: 10rem;
  }

  .buyBtnText {
    font-size: 1.5rem;
  }

  .titleContainer {
    gap: 1rem;
  }

  .titleMobile {
    font-size: 3rem;
  }

  .heHeadBorder {
    width: 3.5rem;
    height: 3.5rem;
  }

  .heHead {
    width: 2.165rem;
    height: 2.5rem;
  }

  .tickerText {
    font-size: 1.5rem;
  }

  .slogan {
    font-size: 1.25rem;
  }

  .playMusic {
    margin-right: 0;
  }

  .heGrind {
    display: none;
  }

  /* ----------------------------- CA RESPONSIVE ----------------------------- */

  .CABorder {
    width: 20rem;
  }

  #copyaddress {
    font-size: 0.75rem;
    padding: 1rem 1rem;
  }

  /* ----------------------------- SOCIALS RESPONSIVE ----------------------------- */

  hr {
    width: 20rem;
  }

  .dsContainer,
  .xContainer,
  .pfContainer {
    width: 20rem;
    font-size: 1rem;
  }

  .linklogos {
    width: 20px;
  }

  .joinUsContainer {
    width: 15rem;
  }

  .joinUsText {
    font-size: 3rem;
  }

  .joinUsLogos {
    width: 25px;
  }

  .txContainer h1,
  .pf2Container h1 {
    font-size: 1rem;
  }

  .txContainer h2,
  .pf2Container h2 {
    font-size: 0.75rem;
  }

  .runningMan {
    width: 5rem;
    height: 5rem;
  }

  /* ----------------------------- POPUP MOBILE ----------------------------- */

  .splash {
    width: 20rem;
  }

  .splashtext {
    font-size: 1.25rem;
  }

  .splashtopsplit {
    height: 6rem;
    padding: 0.25rem;
  }

  .heicon {
    height: auto;
    width: 5rem;
    margin-left: 1rem;
  }

  .splashquestion {
    font-size: 1.25rem;
    text-align: center;
    margin-left: 1rem;
  }
}
