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

@font-face {
  font-family: Childs;
  src: url(fonts/ChildsHandwriting-8AX2.ttf);
}

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

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

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: #fff;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloadimage {
  background-image: url("images/nuclear-loading.png");
  background-size: contain;
  display: inline-block;
  width: 150px;
  height: 150px;
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  animation: spinner 10s 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;
  /* border-top-left-radius: 235px 50px;
  border-top-right-radius: 15px 280px;
  border-bottom-right-radius: 35px 235px;
  border-bottom-left-radius: 15px 170px;
  border: solid 3px black; */
  border-left: 3px solid black;
  color: black;
  background-color: white;
}

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: Cexsons, Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 3rem;
  margin: 1rem;
  border-top-left-radius: 190px 50px;
  border-top-right-radius: 250px 25px;
  border-bottom-right-radius: 235px 35px;
  border-bottom-left-radius: 15px 255px;
  border: solid 3px black;
  background-color: white;
  cursor: pointer;
  pointer-events: all;
}

.asideBtn:hover {
  scale: 1.05;
  background-color: rgb(206, 206, 206);
}

.selectedAsideBtn {
  scale: 1.1;
  background-color: rgb(206, 206, 206);
}

/* ================= 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;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  padding: 1rem 3rem 1rem 3.5rem;
  margin: 1rem;
  border-top-left-radius: 190px 50px;
  border-top-right-radius: 250px 40px;
  border-bottom-right-radius: 235px 35px;
  border-bottom-left-radius: 315px 70px;
  border: solid 3px black;
  color: black;
  background-color: white;
}

.playBtn:hover {
  scale: 1.05;
  background-color: rgb(206, 206, 206);
}

.playBtn.disabled {
  display: none;
}

.pauseBtn {
  display: none;
}

.pauseBtn.enabled {
  margin-right: 1rem;
  pointer-events: all;
  font-size: 3rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 5rem;
  width: 6rem;
  cursor: pointer;
  margin: 1rem;
  border-top-left-radius: 190px 50px;
  border-top-right-radius: 250px 40px;
  border-bottom-right-radius: 235px 35px;
  border-bottom-left-radius: 315px 70px;
  border: solid 3px black;
  color: black;
  background-color: white;
}

.pauseBtn:hover {
  scale: 1.05;
  background-color: rgb(206, 206, 206);
}

.headerpfp {
  background: url(images/chudjakface.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,
.headerBtnLore {
  font-family: Cexsons, Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  border-radius: 1.5rem;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem;
  margin: 1rem;
  border-top-left-radius: 190px 50px;
  border-top-right-radius: 250px 25px;
  border-bottom-right-radius: 235px 35px;
  border-bottom-left-radius: 15px 255px;
  border: solid 3px black;
  background-color: white;
  cursor: pointer;
  pointer-events: all;
}

.headerBtn:hover,
.headerBtnLore:hover {
  scale: 1.05;
  background-color: rgb(206, 206, 206);
}

.selectedBtn {
  scale: 1.1;
  background-color: rgb(206, 206, 206);
}

.headerBtn.transparent {
  opacity: 50%;
}

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

/* About */

.smallAbout {
  display: none;
}

.aboutContainer {
  display: none;
}

.aboutContainer.open {
  width: 70vw;
  height: 60vh;
  padding: 1rem;
  border-top-left-radius: 190px 50px;
  border-top-right-radius: 250px 40px;
  border-bottom-right-radius: 235px 35px;
  border-bottom-left-radius: 315px 70px;
  border: solid 3px black;
  color: black;
  background-color: white;
  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;
  padding: 1rem;
  border-top-left-radius: 190px 50px;
  border-top-right-radius: 250px 40px;
  border-bottom-right-radius: 235px 35px;
  border-bottom-left-radius: 315px 70px;
  border: solid 3px black;
  color: black;
  background-color: white;
  width: 4rem;
  height: 4rem;
  padding: 0;
  position: absolute;
  z-index: 2;
  pointer-events: all;
}

.close:hover {
  scale: 1.05;
  background-color: rgb(206, 206, 206);
}

.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/nothingburger.png) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20rem;
  height: 20rem;
  margin-left: 10rem;
}

.aboutTitle {
  font-size: 3rem;
}

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

/* Buynow */

.buyContainer {
  display: none;
}

.buyContainer.open {
  width: 70vw;
  height: 60vh;
  padding: 1rem;
  border-top-left-radius: 190px 50px;
  border-top-right-radius: 250px 40px;
  border-bottom-right-radius: 235px 35px;
  border-bottom-left-radius: 315px 70px;
  border: solid 3px black;
  color: black;
  background-color: white;
  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: Cexsons, Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
}

.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;
}

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

.CASection {
  display: flex;
  justify-content: center;
  align-items: center;
}

.CABorder {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  gap: 0.5rem;
}

.addressTitle {
  font-family: Cexsons, Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

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

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

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

.copyContainer:hover {
  scale: 1.1;
  text-decoration: underline;
  cursor: pointer;
}

/* 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 {
  font-size: 4rem;
  color: black;
  font-family: Cexsons, Arial, Helvetica, sans-serif;
  font-weight: 700;
}

/* ca */

.caBtn {
  position: relative;
}

.cared:hover {
  opacity: 0;
}

/* ca */

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

/* x */

.footerBtn {
  padding: 1rem 1rem;
  margin: 1rem;
  border-top-left-radius: 190px 50px;
  border-top-right-radius: 250px 40px;
  border-bottom-right-radius: 235px 35px;
  border-bottom-left-radius: 315px 70px;
  border: solid 3px black;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
}

.footerBtn:hover {
  scale: 1.05;
  background-color: rgb(206, 206, 206);
}

.xBtn,
.dsBtn,
.pfBtn {
  position: relative;
}

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

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

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

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

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

  .aboutTitle {
    font-size: 2rem;
  }

  .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/sectionbg.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;
    border-top-left-radius: 190px 50px;
    border-top-right-radius: 250px 40px;
    border-bottom-right-radius: 235px 35px;
    border-bottom-left-radius: 315px 70px;
    border: solid 3px black;
    color: black;
    background-color: white;
    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-top-left-radius: 235px 50px;
    border-top-right-radius: 50px 240px;
    border-bottom-right-radius: 35px 235px;
    border-bottom-left-radius: 15px 170px;
    border: solid 3px black;
    color: black;
    background-color: white;
  }

  .playBtn {
    display: none;
  }

  .smallPlayBtn {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    border-top-left-radius: 190px 50px;
    border-top-right-radius: 250px 40px;
    border-bottom-right-radius: 235px 35px;
    border-bottom-left-radius: 315px 70px;
    border: solid 3px black;
    color: black;
    background-color: white;
    cursor: pointer;
  }

  .smallPlayBtn:hover {
    scale: 1.05;
    background-color: rgb(206, 206, 206);
  }

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

  .smallAboutTitle {
    font-size: 1.5rem;
  }

  .smallAboutBlurb {
    font-size: 1rem;
    font-family: Cexsons, Arial, Helvetica, sans-serif;
  }

  .smallcopybundle {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 235px 50px;
    border-top-right-radius: 50px 240px;
    border-bottom-right-radius: 35px 235px;
    border-bottom-left-radius: 15px 170px;
    border: solid 3px black;
    color: black;
    background-color: white;
    margin-top: 1rem;
    gap: 1rem;
    width: 80%;
    padding: 0.75rem;
  }

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

  #smallcopyaddress {
    font-size: 1rem;
  }

  .headerBtn,
  .headerBtnLore {
    display: none;
  }

  footer {
    display: none;
  }

  .desktop {
    display: none;
  }

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

  .headerLogo {
    color: black;
    font-size: 2rem;
    margin-top: 1rem;
  }

  .headerpfp {
    background: url(images/chudjakface.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;
    border-bottom: 3px solid;
  }

  .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 {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 235px 50px;
    border-top-right-radius: 50px 240px;
    border-bottom-right-radius: 35px 235px;
    border-bottom-left-radius: 15px 170px;
    border: solid 3px black;
    color: black;
    background-color: white;
    margin-top: 1rem;
    gap: 1rem;
  }

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

  #asidecopyaddress {
    font-size: 1rem;
  }

  .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;
    height: 2rem;
    gap: 1rem;
    margin-bottom: 12.5rem;
  }

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

  .imglinksaside:hover {
    scale: 1.05;
  }

  /* TOKENOMICS */

  .aboutContainer {
    margin-top: 200vh;
  }

  .aboutTop {
    display: none;
  }

  .aboutBottom {
    display: none;
  }

  /* BUY NOW */
  .buyContainer.open {
    width: 85vw;
    height: auto;
    padding: 1rem;
    border-top-left-radius: 190px 50px;
    border-top-right-radius: 250px 40px;
    border-bottom-right-radius: 235px 35px;
    border-bottom-left-radius: 315px 70px;
    border: solid 3px black;
    color: black;
    background-color: white;
    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: Cexsons, Arial, Helvetica, sans-serif;
    font-size: 2rem;
  }

  .pfbtn {
    position: relative;
  }

  .copybundle {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 235px 50px;
    border-top-right-radius: 50px 240px;
    border-bottom-right-radius: 35px 235px;
    border-bottom-left-radius: 15px 170px;
    border: solid 3px black;
    color: black;
    background-color: white;
    margin-top: 1rem;
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

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

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

@media (max-width: 565px) {
  .headerLogo {
    font-size: 1.5rem;
    text-align: center;
  }

  #asidecopyaddress {
    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;
  }

  .asideLinks {
    gap: 0.5rem;
  }

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

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

  #asidecopyaddress {
    font-size: 0.6rem;
  }
}
