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

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

body {
  margin: 0;
  padding: 0;
  color: white;
  font-family: Herculanum, Arial, Helvetica, sans-serif;
  background-color: black;
  overflow: hidden;
}

header {
  position: fixed;
  width: 100%;
  pointer-events: none;
  padding-top: 1rem;
}

.desktop {
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: none;
}

.mobile {
  display: none;
}

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

.preloadimage {
  background-image: url("images/loadingcircle.png");
  background-size: contain;
  display: inline-block;
  width: 150px;
  height: 150px;
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  animation: spinner 5s linear infinite;
}

#preloader::after {
  content: "";
  position: absolute;
  width: 145px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 10px solid #f4c430;
  border-top-color: #d73a24;
  animation: spinner 3s linear infinite;
}

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

/* ASIDE */

aside {
  display: none;
  position: fixed;
  transition: right 0.4s ease;
  right: -110vw;
  width: 80vw;
  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 button.close:hover {
  color: rgb(152, 152, 152);
  transition: all 0.2s;
}

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

.closeAside {
  color: #d6d6d6;
  font-size: 3.5rem;
  border: 0;
  font-weight: 100;
  cursor: pointer;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: #d6d6d6 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
  width: 4rem;
  height: 4rem;
  top: 1rem;
  right: 1rem;
  position: absolute;
}

.asideLinks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.asideBtn {
  font-family: Avatar, Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  border-radius: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: #d73a24;
  box-shadow: #d73a24 0px 0px 0px 1px inset, #5e1418 5px 5px 0px 0px;
  cursor: pointer;
  border: none;
}

.asideBtn:hover {
  background: #d73a24; /* Old browsers */
  background: -moz-linear-gradient(top, #d73a24 90%, #f4c430 11%); /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(90%, #d73a24),
    color-stop(11%, #f4c430)
  ); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    #d73a24 90%,
    #f4c430 11%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    #d73a24 90%,
    #f4c430 11%
  ); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #d73a24 90%, #f4c430 11%); /* IE10+ */
  background: linear-gradient(to bottom, #d73a24 90%, #f4c430 11%); /* W3C */
}

.selectedAsideBtn {
  background: #d73a24; /* Old browsers */
  background: -moz-linear-gradient(top, #d73a24 90%, #f4c430 11%); /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(90%, #d73a24),
    color-stop(11%, #f4c430)
  ); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    #d73a24 90%,
    #f4c430 11%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    #d73a24 90%,
    #f4c430 11%
  ); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #d73a24 90%, #f4c430 11%); /* IE10+ */
  background: linear-gradient(to bottom, #d73a24 90%, #f4c430 11%); /* W3C */
}

/* ================= FIX SELECTED  */

/* VIDEO AND CONTROLS */

.video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  margin: 0;
  filter: contrast(110%);
}

.smallPlayBtn {
  display: none;
}

.playBtn {
  font-size: 7.5rem;
  border-radius: 3rem;
  color: white;
  background-color: #d73a24;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 3rem 1rem 3.5rem;
  pointer-events: all;
  box-shadow: #d73a24 0px 0px 0px 1px inset, #5e1418 5px 5px 0px 0px;
  cursor: pointer;
  -webkit-transition: background-color 150ms linear, color 150ms linear,
    box-shadow 150ms;
  -moz-transition: background-color 150ms linear, color 150ms linear,
    box-shadow 150ms;
  -o-transition: background-color 150ms linear, color 150ms linear,
    box-shadow 150ms;
  -ms-transition: background-color 150ms linear, color 150ms linear,
    box-shadow 150ms;
  transition: background-color 150ms linear, color 150ms linear,
    box-shadow 150ms;
}

.playBtn:hover {
  color: #d73a24;
  background-color: #f4c430;
  box-shadow: #f4c430 0px 0px 0px 1px inset, #e8a017 5px 5px 0px 0px;
}

.playBtn.disabled {
  display: none;
}

.pauseBtn {
  display: none;
}

.pauseBtn.enabled {
  margin-right: 1rem;
  pointer-events: all;
  font-size: 3rem;
  border-radius: 1.5rem;
  color: white;
  background-color: #d73a24;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 5rem;
  width: 6rem;
  box-shadow: #d73a24 0px 0px 0px 1px inset, #5e1418 5px 5px 0px 0px;
  cursor: pointer;
  -webkit-transition: background-color 150ms linear, color 150ms linear,
    box-shadow 150ms;
  -moz-transition: background-color 150ms linear, color 150ms linear,
    box-shadow 150ms;
  -o-transition: background-color 150ms linear, color 150ms linear,
    box-shadow 150ms;
  -ms-transition: background-color 150ms linear, color 150ms linear,
    box-shadow 150ms;
  transition: background-color 150ms linear, color 150ms linear,
    box-shadow 150ms;
}

.pauseBtn:hover {
  color: #d73a24;
  background-color: #f4c430;
  box-shadow: #f4c430 0px 0px 0px 1px inset, #e8a017 5px 5px 0px 0px;
}

.headerpfp {
  background: url(images/avatardpfp.png) no-repeat;
  background-size: contain;
  width: 900px;
  height: 900px;
  zoom: 0.09;
  margin-left: 5rem;
  pointer-events: all;
  cursor: pointer;
}

/* Main section */

.sectionOne {
  height: auto;
}

.sectionOverlay {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.sectionMiddle {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.sectionHeader {
  /* position: fixed; */
  transition: all 1s ease;
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  pointer-events: none;
}

.sectionHeader.transparent {
  opacity: 0.25;
  pointer-events: none;
}

.headerBtn {
  font-family: Avatar, Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  border-radius: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: #d73a24;
  box-shadow: #d73a24 0px 0px 0px 1px inset, #5e1418 5px 5px 0px 0px;
  cursor: pointer;
  border: none;
  pointer-events: all;
}

.headerBtn:hover {
  background: #d73a24; /* Old browsers */
  background: -moz-linear-gradient(top, #d73a24 90%, #f4c430 11%); /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(90%, #d73a24),
    color-stop(11%, #f4c430)
  ); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    #d73a24 90%,
    #f4c430 11%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    #d73a24 90%,
    #f4c430 11%
  ); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #d73a24 90%, #f4c430 11%); /* IE10+ */
  background: linear-gradient(to bottom, #d73a24 90%, #f4c430 11%); /* W3C */
}

.selectedBtn {
  background: #d73a24; /* Old browsers */
  background: -moz-linear-gradient(top, #d73a24 90%, #f4c430 11%); /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(90%, #d73a24),
    color-stop(11%, #f4c430)
  ); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    #d73a24 90%,
    #f4c430 11%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    #d73a24 90%,
    #f4c430 11%
  ); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #d73a24 90%, #f4c430 11%); /* IE10+ */
  background: linear-gradient(to bottom, #d73a24 90%, #f4c430 11%); /* W3C */
}

.headerBtn.transparent {
  opacity: 50%;
}

.headerBtn.transparent:hover {
  opacity: 100%;
}

/* About */

.smallAbout {
  display: none;
}

.aboutContainer {
  display: none;
}

.aboutContainer.open {
  width: 70vw;
  height: 60vh;
  border-radius: 1.5rem;
  /* padding: 2rem; */
  background-color: #fff;
  box-shadow: #fff 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.aboutTop {
  display: flex;
  justify-content: flex-end;
  padding: 2rem 2rem 0 0;
  border: 0;
}

.close {
  color: #d6d6d6;
  font-size: 3.5rem;
  border: 0;
  font-weight: 100;
  cursor: pointer;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: #d6d6d6 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
  width: 4rem;
  height: 4rem;
  padding: 0;
  position: absolute;
  z-index: 2;
  pointer-events: all;
}

.aboutBottom {
  text-align: center;
  display: flex;
  padding: 1rem;
  height: 90%;
}

.aboutLeft,
.aboutRight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.aboutLeft {
  width: 40%;
}

.aboutRight {
  width: 60%;
}

.aboutpfp {
  background: url(images/avatardpfp.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 900px;
  height: 900px;
  zoom: 0.5;
  margin-left: 10rem;
}

.aboutTitle {
  background: url(images/avatardtitle.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1378px;
  height: 247px;
  zoom: 0.35;
}

.aboutBlurb {
  color: black;
  font-size: 1.5rem;
  text-align: center;
  width: 70%;
}

/* Buynow */

.buyContainer {
  display: none;
}

.buyContainer.open {
  width: 70vw;
  height: 60vh;
  border-radius: 1.5rem;
  color: black;
  background-color: #fff;
  box-shadow: #fff 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.buyTop {
  display: flex;
  justify-content: flex-end;
  padding: 2rem 2rem 0 0;
  border: 0;
}

.buyBottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  height: 90%;
  font-size: 2rem;
  text-align: center;
}

h1 {
  font-family: Avatar, Arial, Helvetica, sans-serif;
  font-size: 3rem;
}

.pfbtn {
  position: relative;
}

.pfred {
  background: url(images/pfred.png) no-repeat;
  position: absolute;
  background-size: contain;
  display: inline-block;
  width: 500px;
  height: 500px;
  zoom: 0.2;
  transition: opacity 300ms ease-out;
  cursor: pointer;
  pointer-events: all;
}

.pfwhite {
  background: url(images/pfwhite.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 500px;
  height: 500px;
  zoom: 0.2;
  transition: opacity 300ms ease-out;
  cursor: pointer;
}

.pfred:hover {
  opacity: 0;
}

.smallcopybundle {
  display: none;
}

.copybundle {
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: #d6d6d6 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
  margin-top: 1rem;
  gap: 1rem;
  padding: 0.5rem 1rem;
}

#btn-copy {
  width: 20px;
  height: 20px;
  pointer-events: all;
}

#copyaddress {
  font-size: 0.75rem;
}

/* Tokenomics*/

.tokenomicsContainer {
  display: none;
}

.tokenomicsContainer.open {
  font-family: Avatar, Arial, Helvetica, sans-serif;
  font-size: 3rem;
  width: 70vw;
  height: 60vh;
  border-radius: 1.5rem;
  /* padding: 2rem; */
  background-color: #fff;
  box-shadow: #fff 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: black;
}

.tokenomicsTop {
  display: flex;
  justify-content: flex-end;
  padding: 2rem 2rem 0 0;
  border: 0;
}

.tokenomicsBottom {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1rem;
  height: 90%;
}

.piechart {
  background: url(images/piechartavatard.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 684px;
  height: 673px;
  zoom: 0.6;
}

.tokenomicsRight {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tokenomicsTitle {
  color: #fff;
  background-color: #d73a24;
  padding: 1.5rem;
  border-radius: 1rem;
  z-index: 0;
  margin-bottom: -1rem;
  width: 80%;
}

.tokenomicsInfo {
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: #d6d6d6 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
  padding: 1rem;
  z-index: 1;
  width: 95%;
  margin-bottom: 0.75rem;
}

.supplyNumber {
  font-size: 4rem;
}

.number {
  font-size: 4rem;
  color: #d73a24;
}

/* Footer */
footer {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footerRight {
  position: fixed;
  transition: all 0.4s ease;
  right: 0;
  bottom: 0;
}

.footerRight.closed {
  right: -100vw;
  opacity: 0;
}

.footerLeft {
  display: flex;
  gap: 0.5rem;
  padding: 0 0 1rem 1rem;
}

.footerLogo {
  background: url(images/headerlogo.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 1378px;
  height: 369px;
  zoom: 0.2;
}

/* ca */

.caBtn {
  position: relative;
}

.cared:hover {
  opacity: 0;
}

/* ca */

.footerRight {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem 1rem 0;
}

/* x */

.xBtn {
  position: relative;
}

.xred {
  background: url(images/xred.png) no-repeat;
  position: absolute;
}

.xwhite {
  background: url(images/xwhite.png) no-repeat;
}

.xred:hover {
  opacity: 0;
}

/* telegram */

.tgBtn {
  position: relative;
}

.tgred {
  background: url(images/tgred.png) no-repeat;
  position: absolute;
}

.tgwhite {
  background: url(images/tgwhite.png) no-repeat;
}

.tgred:hover {
  opacity: 0;
}

/* dexscreener */

.dsBtn {
  position: relative;
}

.dsred {
  background: url(images/dsred.png) no-repeat;
  position: absolute;
}

.dswhite {
  background: url(images/dswhite.png) no-repeat;
}

.dsred:hover {
  opacity: 0;
}

/* dextools */

.dtBtn {
  position: relative;
}

.dtred {
  background: url(images/dtred.png) no-repeat;
  position: absolute;
}

.dtwhite {
  background: url(images/dtwhite.png) no-repeat;
}

.dtred:hover {
  opacity: 0;
}

/* solscan */

.ssBtn {
  position: relative;
}

.ssred {
  background: url(images/ssred.png) no-repeat;
  position: absolute;
}

.sswhite {
  background: url(images/sswhite.png) no-repeat;
}

.ssred:hover {
  opacity: 0;
}

/* coingecko */

.cgBtn {
  position: relative;
}

.cgred {
  background: url(images/cgred.png) no-repeat;
  position: absolute;
}

.cgwhite {
  background: url(images/cgwhite.png) no-repeat;
}

.cgred:hover {
  opacity: 0;
}

/* coingecko */

.cmcBtn {
  position: relative;
}

.cmcred {
  background: url(images/cmcred.png) no-repeat;
  position: absolute;
}

.cmcwhite {
  background: url(images/cmcwhite.png) no-repeat;
}

.cmcred:hover {
  opacity: 0;
}

.imglinks {
  background-size: contain;
  display: inline-block;
  width: 500px;
  height: 500px;
  zoom: 0.15;
  transition: opacity 300ms ease-out;
  cursor: pointer;
}

@media (max-width: 1500px) {
  .aboutpfp {
    zoom: 0.3;
    margin-left: 10rem;
  }

  .aboutTitle {
    zoom: 0.25;
  }

  .aboutBlurb {
    font-size: 1.25rem;
    width: 60%;
  }

  .tokenomicsContainer.open {
    font-size: 1.75rem;
  }

  .piechart {
    zoom: 0.4;
  }

  .supplyNumber {
    font-size: 2.75rem;
  }

  .number {
    font-size: 2.75rem;
    color: #d73a24;
  }
}

@media (max-width: 900px) {
  .sectionOne {
    background-image: url("images/backgroundavatard.png");
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    background-position: center center;
  }

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

  .mobileBundle.disabled {
    display: none;
  }

  .videoPlayer {
    width: auto;
    height: auto;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: #d6d6d6 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12.5rem;
  }

  .video {
    width: 20rem;
    height: auto;
    z-index: 2;
    position: unset;
    margin: 1.5rem;
    border-radius: 1rem;
  }

  .playBtn {
    display: none;
  }

  .smallPlayBtn {
    font-size: 1.5rem;
    border-radius: 1rem;
    color: white;
    background-color: #d73a24;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 1.2rem;
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: #d73a24 0px 0px 0px 1px inset, #5e1418 3px 3px 0px 0px;
    cursor: pointer;
    -webkit-transition: background-color 150ms linear, color 150ms linear,
      box-shadow 150ms;
    -moz-transition: background-color 150ms linear, color 150ms linear,
      box-shadow 150ms;
    -o-transition: background-color 150ms linear, color 150ms linear,
      box-shadow 150ms;
    -ms-transition: background-color 150ms linear, color 150ms linear,
      box-shadow 150ms;
    transition: background-color 150ms linear, color 150ms linear,
      box-shadow 150ms;
  }

  .smallPlayBtn:hover {
    color: #d73a24;
    background-color: #f4c430;
    box-shadow: #f4c430 0px 0px 0px 1px inset, #e8a017 3px 3px 0px 0px;
  }

  .smallAbout {
    color: black;
    display: initial;
    max-width: 80%;
    text-align: center;
  }

  .smallAboutTitle {
    font-size: 1.5rem;
  }

  .smallAboutBlurb {
    font-size: 1rem;
  }

  .smallcopybundle {
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: #d6d6d6 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
    margin-top: 1rem;
    gap: 1rem;
    width: 80%;
    padding: 0.75rem;
  }

  #small-btn-copy {
    width: 20px;
    height: 20px;
  }

  #smallcopyaddress {
    font-size: 0.75rem;
  }

  .headerBtn {
    display: none;
  }

  footer {
    display: none;
  }

  .desktop {
    display: none;
  }

  header {
    background-color: white;
    z-index: 5;
    transition: 1s;
    height: 5rem;
  }

  .headerLogo {
    background: url(images/headerlogo.png) no-repeat;
    background-size: contain;
    display: inline-block;
    filter: brightness(0%);
    width: 1378px;
    height: 369px;
    zoom: 0.175;
  }

  .headerpfp {
    background: url(images/avatardpfp.png) no-repeat;
    background-size: contain;
    width: 900px;
    height: 900px;
    zoom: 0.075;
    margin-left: 1rem;
  }

  .mobile {
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
  }

  .menuBtn {
    margin-right: 1rem;
    pointer-events: all;
    font-size: 4rem;
    border-radius: 1.5rem;
    color: black;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 3rem;
  }

  .menuBtn:hover {
    color: #b9b9b9;
  }

  aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .asideTop {
    width: 100%;
  }

  .asidecopybundle {
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: #d6d6d6 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
    margin-top: 1rem;
    gap: 1rem;
  }

  #aside-btn-copy {
    width: 20px;
    height: 20px;
  }

  #asidecopyaddress {
    font-size: 0.6rem;
  }

  .asideBottom {
    color: black;
  }

  .asideSocialsTitle {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 0.1em;
    margin: 10px 0 20px;
  }

  .asideSocialsTitle span {
    background: #fff;
    padding: 0 10px;
  }

  .asideSocials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 240px;
    gap: 0.25rem;
    margin-bottom: 6rem;
  }

  .imglinksaside {
    background-size: contain;
    display: inline-block;
    width: 500px;
    height: 500px;
    zoom: 0.1;
    transition: opacity 300ms ease-out;
    cursor: pointer;
  }

  /* TOKENOMICS */

  .aboutContainer {
    margin-top: 200vh;
  }

  .aboutTop {
    display: none;
  }

  .aboutBottom {
    display: none;
  }

  /* TOKENOMICS */
  .tokenomicsContainer.open {
    position: absolute;
    font-family: Avatar, Arial, Helvetica, sans-serif;
    font-size: 3rem;
    width: 85vw;
    height: auto;
    border-radius: 1.5rem;
    /* padding: 2rem; */
    background-color: #fff;
    box-shadow: #fff 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
    display: flex;
    flex-direction: column;
    color: black;
    font-size: 2rem;
  }

  .tokenomicsTop {
    display: none;
  }

  .tokenomicsBottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    height: 100%;
  }

  .piechart {
    background: url(images/piechartavatard.png) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 684px;
    height: 673px;
    zoom: 0.4;
  }

  .tokenomicsRight {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .tokenomicsTitle {
    color: #fff;
    background-color: #d73a24;
    padding: 1rem;
    border-radius: 1rem;
    z-index: 0;
    margin-bottom: -1rem;
    width: 80%;
  }

  .tokenomicsInfo {
    border-radius: 1rem;
    background-color: #fff;
    box-shadow: #d6d6d6 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
    padding: 0.75rem;
    z-index: 1;
    margin-bottom: 0.5rem;
  }

  .supplyNumber {
    font-size: 3rem;
  }

  .number {
    font-size: 3rem;
    color: #d73a24;
  }

  /* BUY NOW */
  .buyContainer.open {
    width: 85vw;
    height: auto;
    border-radius: 1.5rem;
    color: black;
    background-color: #fff;
    box-shadow: #fff 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .buyTop {
    display: none;
  }

  .buyBottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    height: 100%;
    font-size: 2rem;
    text-align: center;
  }

  h1 {
    font-family: Avatar, Arial, Helvetica, sans-serif;
    font-size: 2rem;
  }

  .pfbtn {
    position: relative;
  }

  .pfred {
    background: url(images/pfred.png) no-repeat;
    position: absolute;
    background-size: contain;
    display: inline-block;
    width: 500px;
    height: 500px;
    zoom: 0.15;
    transition: opacity 300ms ease-out;
    cursor: pointer;
  }

  .pfwhite {
    background: url(images/pfwhite.png) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 500px;
    height: 500px;
    zoom: 0.15;
    transition: opacity 300ms ease-out;
    cursor: pointer;
  }

  .pfred:hover {
    opacity: 0;
  }

  .copybundle {
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: #d6d6d6 0px 0px 0px 1px inset, #d6d6d6 5px 5px 0px 0px;
    margin-top: 1rem;
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

  #btn-copy {
    width: 20px;
    height: 20px;
  }

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

@media (max-width: 450px) {
  .videoPlayer {
    margin-top: 7.5rem;
  }

  .video {
    width: 18rem;
    height: auto;
    z-index: 2;
    position: unset;
    margin: 1rem;
  }

  .smallAboutBlurb {
    font-size: 0.75rem;
  }

  .smallcopybundle {
    gap: 0.5rem;
    padding: 0.75rem;
  }

  #small-btn-copy {
    width: 15px;
    height: 15px;
  }

  #smallcopyaddress {
    font-size: 0.6rem;
  }

  .copybundle {
    border-radius: 0.5rem;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  #btn-copy {
    width: 15px;
    height: 15px;
  }

  #copyaddress {
    font-size: 0.6rem;
  }

  .tokenomicsContainer.open {
    font-size: 1.5rem;
    margin-top: 3rem;
  }

  .piechart {
    zoom: 0.2;
  }

  .supplyNumber {
    font-size: 2.5rem;
  }

  .number {
    font-size: 2.5rem;
  }

  .headerLogo {
    zoom: 0.15;
  }

  .asideLinks {
    gap: 0.5rem;
  }

  .asideSocials {
    margin-bottom: 12.5rem;
    gap: 0.1rem;
  }

  .asideBtn {
    font-size: 2rem;
    padding: 1rem 3rem;
  }
}
