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

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

* {
  font-family: comingsoon, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("images/backgroundpanda.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #fbf9c6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 0.5s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

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

.backdropsplash {
  position: fixed;
  inset: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.backdropsplash.disabled {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.5s, opacity 0.5s linear;
}

.enterlogo {
  background: url("images/pandasprite.gif") no-repeat;
  display: inline-block;
  position: relative;
  width: 540px;
  height: 540px;
  background-position: 0px 0px;
  zoom: 0.75;
}

.enterlogo:hover {
  background-position: 0px -540px;
  cursor: pointer;
}

/* ------------------------ HEADER ------------------------ */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 0.5rem;
}

.headerLogo {
  background-image: url(images/dancingpandaR.gif);
  background-size: 5rem 5rem;
  width: 5rem;
  height: 5rem;
}

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

.headerBtns {
  padding: 5px 10px;
}

.headerBtns:hover {
  color: white;
  transition: 0.25s ease;
}

.headerlogos {
  width: 30px;
  height: auto;
  transition: transform 0.2s;
  animation: fadeIn 3s;
  margin: 5px;
}

.headerlogos:hover {
  transform: scale(1.1);
}

header nav.right {
  display: none;
}

.backdropnav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
}

.backdropnav.active {
  display: block;
}

aside {
  position: fixed;
  transition: right 0.4s ease;
  right: -320px;
  width: 320px;
  background-color: white;
  padding: 80px 40px;
  z-index: 4;
  height: 100vh;
  top: 0;
}

aside.active {
  right: 0;
}

aside a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 12px 0;
  font-size: 1.5rem;
  font-weight: 500;
}

aside a:hover {
  scale: 1.05;
  color: rgb(152, 152, 152);
  transition: all 0.2s;
}

aside button.close {
  color: black;
  font-size: 3rem;
  border: 0;
  background-color: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  font-weight: 100;
  cursor: pointer;
}

aside button.close:hover {
  color: rgb(152, 152, 152);
  transition: all 0.2s;
}

header nav.right {
  text-align: right;
}

.desktop {
  display: initial;
}

/* ------------------------ HOMEPAGE ------------------------ */

.homepage {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepageBackground {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 3rem;
  border-radius: 3rem;
  width: 90%;
  margin-bottom: 5rem;
}

.homepageTop {
  margin-top: 2.5rem;
}

.homepageTitle {
  background-image: url(images/pandaeatbamboo.png);
  background-size: 54.75rem 7.5rem;
  width: 54.75rem;
  height: 7.5rem;
}

.homepageBottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bamboo {
  background-image: url(images/bamboo.png);
  background-size: 23.5rem 50rem;
  width: 23.5rem;
  height: 50rem;
}

.homepageCenter {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 3rem;
}

.homepageTicker {
  background-image: url(images/panbooticker.png);
  background-size: 16rem 5rem;
  width: 16rem;
  height: 5rem;
  margin-top: 3rem;
}

.panboo {
  background-image: url(images/panboo.gif);
  background-size: 24rem 30rem;
  width: 24rem;
  height: 30rem;
  margin-top: 2rem;
}

.buynow {
  background-color: transparent;
  background-image: url(images/buynow.png);
  background-size: 8rem 2.5rem;
  width: 8rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: center;
  border: 0.5rem solid black;
  /* border-style: dashed; */
  border-radius: 1rem;
  padding: 2rem 8rem;
  margin-top: 2rem;
}

.buynow:hover {
  background-color: #fffee1;
  scale: 1.05;
  cursor: pointer;
}

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

.socials {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.socialsBackground {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 3rem;
  border-radius: 3rem;
  width: 90%;
  margin-bottom: 5rem;
}

.welcome {
  background-image: url(images/welcome.png);
  background-size: 22rem 5rem;
  width: 22rem;
  height: 5rem;
}

.blurb {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.dancingPanda {
  background-image: url(images/dancingpandaR.gif);
  background-size: 30rem 30rem;
  width: 30rem;
  height: 30rem;
}

.contractAddress {
  font-size: 1.75rem;
}

#copyaddress {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#btn-copy {
  width: 12.5rem;
  height: 5.5rem;
  border: 0.5rem solid black;
  /* border-style: dashed; */
  border-radius: 1rem;
  padding: 1rem 2rem;
}

#btn-copy:hover {
  background-color: #fffee1;
  scale: 1.05;
}

.links {
  margin-top: 2rem;
}

.imgLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem 1rem;
  justify-content: center;
  align-items: center;
}

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

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

/* ------------------------ ABOUT ------------------------ */

.about {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutBackground {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 3rem;
  border-radius: 3rem;
  width: 90%;
  margin-bottom: 5rem;
}

.aboutBottom {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.aboutTitle {
  background-image: url(images/whatispanboo.png);
  background-size: 38rem 5.5rem;
  width: 38rem;
  height: 5.5rem;
  margin-bottom: 2rem;
}

.pandaTv {
  background-image: url(images/realpanda.gif);
  background-size: 30rem 30rem;
  width: 30rem;
  height: 30rem;
}

.aboutBlurb {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 1rem;
}

.aboutDescription {
  font-size: 2rem;
  text-align: center;
}

/* ------------------------ TOKENOMICS ------------------------ */

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.tokenomics {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tokenomicsBackground {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 3rem;
  border-radius: 3rem;
  width: 90%;
  margin-bottom: 5rem;
}

.tokenomicsTitle {
  background-image: url(images/tokenomics.png);
  background-size: 26rem 5rem;
  width: 26rem;
  height: 5rem;
  margin-bottom: 2rem;
}

.tokenomicsContent {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.tokenomicsLeft {
  height: 100%;
}

.blackboard {
  padding-top: 5rem;
  padding-bottom: 3rem;
  text-align: center;
  color: white;
  min-width: 50vw;
  margin: 7% auto;
  border: tan solid 12px;
  border-top: #bda27e solid 12px;
  border-left: #b19876 solid 12px;
  border-bottom: #c9ad86 solid 12px;
  box-shadow: 0px 0px 6px 5px rgba(58, 18, 13, 0), 0px 0px 0px 2px #c2a782,
    0px 0px 0px 4px #a58e6f, 3px 4px 8px 5px rgba(0, 0, 0, 0.5);
  background-image: radial-gradient(
      circle at left 30%,
      rgba(34, 34, 34, 0.3),
      rgba(34, 34, 34, 0.3) 80px,
      rgba(34, 34, 34, 0.5) 100px,
      rgba(51, 51, 51, 0.5) 160px,
      rgba(51, 51, 51, 0.5)
    ),
    linear-gradient(
      215deg,
      transparent,
      transparent 100px,
      #222 260px,
      #222 320px,
      transparent
    ),
    radial-gradient(circle at right, #111, rgba(51, 51, 51, 1));
  background-color: #333;
}

.blackboard:before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      175deg,
      transparent,
      transparent 40px,
      rgba(120, 120, 120, 0.1) 100px,
      rgba(120, 120, 120, 0.1) 110px,
      transparent 220px,
      transparent
    ),
    linear-gradient(200deg, transparent 80%, rgba(50, 50, 50, 0.3)),
    radial-gradient(
      ellipse at right bottom,
      transparent,
      transparent 200px,
      rgba(80, 80, 80, 0.1) 260px,
      rgba(80, 80, 80, 0.1) 320px,
      transparent 400px,
      transparent
    );
  border: #2c2c2c solid 2px;
  font-size: 2.2em;
  color: rgba(238, 238, 238, 0.7);
  text-align: center;
  padding-top: 20px;
}

.tokenomicsRight {
  align-self: flex-end;
}

.pandaCalculator {
  background-image: url(images/pandacalculator.png);
  background-size: 21rem 22.5rem;
  width: 21rem;
  height: 22.5rem;
}

/* ------------------------ TOKENOMICS ------------------------ */

/* ------------------------ HOW TO BUY ------------------------ */

h1 {
  font-size: 3rem;
}

.howtobuy {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.howtobuyBackground {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 3rem;
  border-radius: 3rem;
  width: 90%;
  margin-bottom: 5rem;
}

.howtobuyTitle {
  background-image: url(images/howtobuy.png);
  background-size: 25rem 5rem;
  width: 25rem;
  height: 5rem;
  margin-bottom: 2rem;
}

.howtobuysteps {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stepcontainers {
  width: 100%;
  min-height: 25rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* .stepcontainer {
  margin-top: 5rem;
  background-color: green;
} */

.stepInfo {
  width: 50%;
  align-self: center;
}

.phantom {
  background: url(images/pandaphantom.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20rem;
  height: 20rem;
}

.solana {
  background: url(images/pandasolana.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20rem;
  height: 20rem;
}

.raydium {
  background: url(images/pandaraydium.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20rem;
  height: 20rem;
}

.wallet {
  background: url(images/pandawallet.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20rem;
  height: 20rem;
}

.stepBlurb {
  font-size: 1.5rem;
}

/* ------------------------ HOW TO BUY ------------------------ */

/* ------------------------ DISCLAIMER ------------------------ */

.disclaimer {
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
}

.disclaimerBlurb {
  text-align: center;
  width: 90%;
}

/* ------------------------ DISCLAIMER ------------------------ */

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

footer {
  position: fixed;
  bottom: 10pt;
  right: 10pt;
}

/* test  */

.pandaMusic {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 5px 5px;
  border-radius: 0.5rem;
  border: 0.15rem solid #1ed760;
  background-color: #1ed760;
}

.pandaAlbum {
  background: url(images/pandasong.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 75px;
  height: 75px;
  border-radius: 0.5rem;
}

.musicDescription {
  color: white;
}

.pandaAlbum.collapsed {
  display: none;
}

.musicDescription.collapsed {
  display: none;
}

.ansiigner {
  font-size: 0.75rem;
}

.playMusic {
  background: url(images/playbutton.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 25px;
  height: 25px;
  cursor: pointer;
  border: none;
  align-self: flex-end;
}

.playing {
  background: url(images/pausebutton.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

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

@media (max-width: 1700px) {
  h1 {
    font-size: 2rem;
  }

  .phantom,
  .solana,
  .raydium,
  .wallet {
    width: 15rem;
    height: 15rem;
  }

  .stepcontainers {
    min-height: 20rem;
  }
}

@media (max-width: 1300px) {
  .panboo {
    background-size: 16rem 20rem;
    width: 16rem;
    height: 20rem;
  }

  .bamboo {
    background-size: 15rem 35rem;
    width: 15rem;
    height: 35rem;
  }

  .stepcontainers {
    min-height: 0;
  }

  .howtobuysteps {
    grid-template-columns: 1fr;
  }

  .stepInfo {
    width: 60%;
    margin-left: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 1120px) {
  /* .contractAddress,
  #copyaddress {
    display: none;
  } */

  .contractAddress {
    font-size: 1.5rem;
  }

  #copyaddress {
    font-size: 1.75rem;
  }
}

@media (max-width: 1050px) {
  .homepageTitle {
    background-image: url(images/pandaeatbamboovert.png);
    background-size: 25rem 25rem;
    width: 25rem;
    height: 25rem;
  }

  .aboutBottom {
    display: flex;
    flex-direction: column;
  }

  .aboutBlurb {
    width: 100%;
    margin-top: 2rem;
  }
}

@media (max-width: 900px) {
  .enterlogo {
    background-image: url(images/realpandaenter.png);
    background-size: 20rem 20rem;
    width: 20rem;
    height: 20rem;
  }

  .homepageTicker {
    background-size: 8rem 2.88rem;
    width: 8rem;
    height: 2.88rem;
    margin-top: 2rem;
  }

  .panboo {
    background-size: 12rem 15rem;
    width: 12rem;
    height: 15rem;
  }

  .homepageTitle {
    background-size: 20rem 20rem;
    width: 20rem;
    height: 20rem;
  }

  .bamboo {
    background-size: 11rem 25rem;
    width: 11rem;
    height: 25rem;
  }

  .buynow {
    background-size: 6rem 1.875rem;
    width: 6rem;
    height: 1.875rem;
    border: 0.25rem solid black;
    /* border-style: dashed; */
    padding: 1.5rem 6rem;
  }

  .dancingPanda {
    background-size: 15rem 15rem;
    width: 15rem;
    height: 15rem;
  }

  #btn-copy {
    width: 8rem;
    height: 3rem;
    border: 0.25rem solid black;
    /* border-style: dashed; */
    border-radius: 1rem;
    padding: 0.5rem 1rem;
  }

  .pandaCalculator {
    background-image: url(images/pandacalculator.png);
    background-size: 10.5rem 11.25rem;
    width: 10.5rem;
    height: 11.25rem;
  }

  .pandaTv {
    background-image: url(images/realpanda.gif);
    background-size: 20rem 20rem;
    width: 20rem;
    height: 20rem;
  }

  .contractAddress {
    font-size: 1.25rem;
  }

  #copyaddress {
    font-size: 1.5rem;
  }
}

@media (max-width: 800px) {
  header nav.right {
    display: initial;
  }

  #menuBtn {
    font-size: 2rem;
  }

  #menuBtn:hover {
    color: rgb(152, 152, 152);
    transition: all 0.2s;
  }

  .desktop {
    display: none;
  }
}

@media (max-width: 780px) {
  .tokenomicsContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .tokenomicsRight {
    align-self: center;
  }

  .aboutTitle {
    background-image: url(images/whatispanboo.png);
    background-size: 25rem 3.7em;
    width: 25rem;
    height: 3.7rem;
  }

  .contractAddress {
    font-size: 1rem;
  }

  #copyaddress {
    font-size: 1.25rem;
  }
}

@media (max-width: 675px) {
  .homepage,
  .socials,
  .about,
  .tokenomics,
  .howtobuy {
    min-height: 80vh;
  }

  .homepageBackground,
  .socialsBackground,
  .aboutBackground,
  .tokenomicsBackground,
  .howtobuyBackground {
    min-height: 80vh;
  }

  .homepageTitle {
    background-size: 15rem 15rem;
    width: 15rem;
    height: 15rem;
  }

  .homepageTicker {
    background-size: 6rem 2.25rem;
    width: 6rem;
    height: 2.25rem;
    margin-top: 1rem;
  }

  .welcome {
    background-size: 11rem 2.5rem;
    width: 11rem;
    height: 2.5rem;
  }

  .aboutTitle {
    background-image: url(images/whatispanboo.png);
    background-size: 19rem 2.75rem;
    width: 19rem;
    height: 2.75rem;
  }

  .howtobuyTitle {
    background-image: url(images/howtobuy.png);
    background-size: 12.5rem 2.5rem;
    width: 12.5rem;
    height: 2.5rem;
  }

  .homepageCenter {
    gap: 0;
  }

  .socialsContent {
    margin-top: 0;
  }

  .homepageBottom {
    height: 100%;
  }

  .panboo {
    background-size: 8rem 10rem;
    width: 8rem;
    height: 10rem;
  }

  .bamboo {
    background-size: 8rem 20rem;
    width: 8rem;
    height: 20rem;
  }

  h1,
  h2 {
    font-size: 2rem;
  }

  h3,
  .blurb {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .aboutDescription {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .stepBlurb {
    font-size: 1rem;
  }

  .tokenomicsTitle {
    background-size: 15rem 2.5rem;
    width: 15rem;
    height: 2.5rem;
    margin-bottom: 1rem;
  }

  .blackboard {
    min-width: 80vw;
  }

  .joinUs {
    background-image: url(images/joinus.png);
    background-size: 11rem 2.5rem;
    width: 11rem;
    height: 2.5rem;
  }
}

@media (max-width: 575px) {
  body {
    background-image: none;
  }

  .homepageBackground {
    padding: 0rem 1rem 3rem 1rem;
  }

  .panboo {
    background-size: 8rem 10rem;
    width: 8rem;
    height: 10rem;
  }

  .bamboo {
    background-size: 5rem 13rem;
    width: 5rem;
    height: 13rem;
  }

  .buynow {
    background-size: 6rem 1.5rem;
    width: 6rem;
    height: 1.5rem;
    border: 0.25rem solid black;
    /* border-style: dashed; */
    padding: 1.5rem 4rem;
    margin-top: 1rem;
  }

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

  .pandaMusic {
    gap: 0.5rem;
    padding: 2.5px 2.5px;
  }

  .pandaAlbum {
    width: 50px;
    height: 50px;
  }

  .headerlogos {
    width: 25px;
    height: auto;
    transition: transform 0.2s;
    animation: fadeIn 3s;
    margin: 2.5px;
  }

  .headerLogo {
    background-size: 4rem 4rem;
    width: 4rem;
    height: 4rem;
  }

  .stepcontainers {
    display: flex;
    flex-direction: column;
  }

  .phantom,
  .solana,
  .raydium,
  .wallet {
    width: 10rem;
    height: 10rem;
  }

  .stepInfo {
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
  }

  .numbers {
    display: none;
  }

  .contractAddress {
    font-size: 0.5rem;
  }

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