html {
  color: white;
}

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

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Anton, Impact, "Arial Narrow Bold", sans-serif;
  background-color: #d95da6;
  background-image: url("../images/WAP.png");
  background-size: auto;
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.background {
  display: none;
}

.header {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
}

.left-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  margin-top: 1rem;
  padding-left: 1rem;
}

.play {
  margin-left: 20px;
}

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

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

.musicDescription {
  color: white;
}

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

.links {
  list-style-type: none;
  width: 50%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 20px;
}

a {
  text-decoration: none;
  color: white;
  transition: all 0.2s;
}

.colorchangem {
  transition: all 0.2s;
}

.colorchangew {
  transition: all 0.2s;
}

a:hover,
.colorchangem:hover {
  color: #630017;
}

.colorchangew:hover {
  color: white;
}

footer {
  position: fixed;
  bottom: -10px;
  text-align: center;
  pointer-events: none;
}

.bigb {
  animation: fadeIn 1s;
  width: 1000px;
}

.mainbody {
  display: flex;
  flex-direction: row;
}

.division {
  width: 100%;
}

.name {
  transform: rotate(90deg);
  transform-origin: left;
  margin-left: 30px;
  font-weight: bolder;
  font-size: 40px;
  font-family: "Times New Roman", Times, serif;
  color: #630017;
}

.name-title {
  color: #630017;
  font-size: 70px;
  margin-top: -20px;
  animation: fadeIn 3s;
}

.information-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.title {
  font-size: 250px;
  margin-bottom: -30px;
  animation: fadeIn 1s;
}

.description {
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
  animation: fadeIn 6s;
}

.btn {
  display: inline-block;
  outline: 0;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  color: #630017;
  background: white;
  line-height: 30px;
  border-radius: 10px;
  padding: 5px 20px;
  font-family: Anton, Impact, "Arial Narrow Bold", sans-serif;
  font-size: 20px;
  font-weight: 300;
  transition: all 0.2s;
}

.btn:hover {
  box-shadow: rgb(99, 0, 23) -2px -2px 0px 2px, rgb(99, 0, 23) 0px 0px 0px 4px,
    rgba(0, 0, 0, 0.05) 0px 0px 2px 7px;
  transform: scale(1.1);
}

.largebtndiv {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

.btnlarge {
  display: inline-block;
  outline: 0;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  color: #630017;
  background: white;
  line-height: 30px;
  border-radius: 10px;
  padding: 20px 40px;
  font-family: Anton, Impact, "Arial Narrow Bold", sans-serif;
  font-size: 35px;
  font-weight: 300;
  transition: all 0.2s;
}

.btnlarge:hover {
  box-shadow: rgb(99, 0, 23) -4px -4px 0px 2px, rgb(99, 0, 23) 0px 0px 0px 8px,
    rgba(0, 0, 0, 0.05) 0px 0px 4px 14px;
  transform: scale(1.1);
}

.arrow {
  font-size: 50px;
}

.arrowR {
  margin-right: 20px;
  animation: sidemoverR 0.5s infinite alternate;
}

@-webkit-keyframes sidemoverR {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20px);
  }
}

@keyframes sidemoverR {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20px);
  }
}

.arrowL {
  margin-left: 20px;
  animation: sidemoverL 0.5s infinite alternate;
}

@-webkit-keyframes sidemoverL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  }
}

@keyframes sidemoverL {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  }
}

.tokenomics,
.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smallheader {
  font-size: 40px;
}

.tokenomics-2 {
  font-size: 80px;
}

.about-us-description {
  font-family: Avenir;
  margin-top: 10px;
  font-size: 20px;
  width: 80%;
  text-align: center;
}

.tokenomics-3 {
  font-size: 25px;
}

.tokenomics-description {
  margin-top: 50px;
  font-family: Avenir, Arial, sans-serif;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  text-align: center;
}

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

.address {
  font-size: 25px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.tokenomics,
.about-us,
.contractaddress {
  margin-bottom: 150px;
  margin-top: 150px;
}

/* .background {
  display: none;
} */

.copyright {
  margin-top: 250px;
  margin-bottom: 20px;
  text-align: center;
}

.playtext {
  font-size: 20px;
  margin-left: 1rem;
}

.logodiv {
  display: none;
}

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

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

hr {
  border: 0;
  width: 80%;
  height: 3px;
  background: white;
  background-image: linear-gradient(to right, #d95da6, white, #d95da6);
}

.imglinks,
.imglinksfooter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

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

.linklogosfooter {
  display: block;
  width: 60px;
  height: auto;
  transition: transform 0.2s;
  animation: fadeIn 3s;
}

.linklogos:hover,
.linklogosfooter:hover {
  transform: scale(1.25);
}

#btn-copy {
  width: 25px;
  transition: all 0.2s;
}

#btn-copy:hover {
  scale: 1.1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.scrollToTopBtn {
  background-color: white;
  border-radius: 50px;
  border: 3px solid white;
  color: #d95da6;
  cursor: pointer;
  font-size: 25px;
  font-weight: bolder;
  line-height: 30px;
  width: 40px;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
}

.scrollToTopBtn:hover {
  scale: 1.2;
}

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

@media only screen and (max-width: 1800px) {
  .bigb {
    width: 50vw;
  }
}

@media only screen and (max-width: 1200px) {
  body {
    padding-bottom: -10px;
  }

  .header {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .left-header {
    display: flex;
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
    padding-bottom: 10px;
  }

  .links {
    list-style-type: none;
    width: 90%;
    display: flex;
    justify-content: space-evenly;
    align-self: center;
  }

  .name {
    display: none;
  }

  footer {
    position: static;
    width: 100%;
    border-bottom: 0;
    margin-bottom: 0;
    pointer-events: none;
  }

  .bigb {
    display: none;
  }

  .mainbody {
    display: block;
  }

  .play {
    margin-top: 50px;
  }

  footer {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
  }

  .background {
    display: flex;
  }

  .about-us-description {
    width: 40%;
  }

  .left-header {
    width: 100%;
  }

  .playtext {
    margin-left: 0rem;
  }

  audio {
    margin-bottom: -30px;
  }

  .scrollToTopBtn {
    border: 3px solid #d95da6;
    color: #d95da6;
  }
}

@media only screen and (max-width: 925px) {
  footer {
    position: static;
    width: 100%;
    border-bottom: 0;
    justify-content: center;
    pointer-events: none;
  }

  .logodiv {
    display: flex;
    justify-content: center;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 2s infinite alternate;
  }

  @-webkit-keyframes mover {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(20px);
    }
  }

  @keyframes mover {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(20px);
    }
  }

  .logo {
    width: 90%;
    margin-right: 0px;
    border-bottom: 5px solid white;
    animation: fadeIn 1s;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .tokenomics,
  .about-us,
  .contractaddress {
    margin-bottom: 15vw;
    margin-top: 15vw;
  }

  .background {
    display: none;
  }
}

.about-us-description {
  width: 60%;
}

@media only screen and (max-width: 750px) {
  .title {
    font-size: 40vw;
  }

  .btn {
    padding: 1vw 3vw;
    font-size: 4vw;
  }

  .linklogos {
    width: 15vw;
  }

  .linklogosfooter {
    width: 8vw;
  }

  .about-us-description {
    width: 80%;
  }

  figcaption {
    font-size: 3.5vw;
  }
}

@media only screen and (max-width: 550px) {
  .title {
    font-size: 37vw;
  }

  .name-title {
    font-size: 9.8vw;
  }

  .smallheader {
    font-size: 7vw;
  }

  .tokenomics-2 {
    font-size: 14vw;
  }

  .tokenomics-3 {
    font-size: 4.3vw;
  }

  .address {
    font-size: 4vw;
  }

  #btn-copy {
    width: 4vw;
  }

  .link {
    font-size: 3vw;
  }

  .linkdivider {
    font-size: 3.2vw;
    margin-top: 2px;
  }

  .btn {
    margin-top: 5px;
  }

  .about-us-description,
  .tokenomics-description {
    font-size: 4vw;
  }

  .btnlarge {
    padding: 3vw 6vw;
    font-size: 7vw;
  }

  .btnlarge:hover {
    box-shadow: rgb(99, 0, 23) -2px -2px 0px 2px, rgb(99, 0, 23) 0px 0px 0px 4px,
      rgba(0, 0, 0, 0.05) 0px 0px 2px 7px;
    transform: scale(1.1);
  }

  .arrow {
    font-size: 10vw;
  }

  .arrowR {
    margin-right: 2vw;
  }

  .arrowL {
    margin-left: 2vw;
  }

  figcaption {
    font-size: 4.5vw;
  }
}

@media only screen and (max-width: 400px) {
  .linkdivider {
    margin-top: 4px;
  }
}
