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

html {
  scroll-behavior: smooth;
  font-size: 1rem;
  text-decoration: none;
}

body {
  color: #fcf6d2;
  font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Regular",
    "Lucida Sans Unicode", sans-serif, sans-serif, Arial, Helvetica;
  background-color: #211b1b;
}

li {
  list-style: none;
}

ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 4rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.7rem;
}

.disclaimer {
  font-size: 0.3rem;
}

.copyright {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.colorChange {
  color: white;
}

header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
  align-items: center;
  background-color: transparent;
  &.can-animate {
    transition: transform 0.3s ease, visibility 0s 0.3s linear;
  }
  &.is-fixed {
    background-color: transparent;
    position: fixed;
    transform: translate3d(0, -100%, 0);
  }
  &.scroll-up {
    transform: translate3d(0, 0, 0);
  }
}

aside {
  position: fixed;
  transition: right 0.4s ease;
  right: -320px;
  width: 320px;
  background-color: #fff;
  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: 25px;
  font-weight: 500;
}

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

.menuBtns:hover {
  color: #6f6f6f;
  transition: 0.2s ease;
}

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

.backdrop.active {
  display: block;
}

header .logo {
  display: inline-block;
  background-image: url(images/thebearmusk.png);
  background-size: 10rem 3rem;
  width: 10rem;
  height: 3rem;
}

.header-buttons:hover {
  scale: 1.03;
  -webkit-filter: brightness(120%);
  transition: 0.35s ease;
}

header nav.center {
  text-align: center;
  margin-left: -10rem;
}

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

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

.desktop {
  display: none;
}

/* test */

.container {
  overflow-y: scroll;
  scroll-snap-type: y proximity;
  -webkit-overflow-scrolling: touch;
  background-color: #211b1b;
}

.content {
  width: 100vw;
  height: auto;
  padding: 12.5vh 5vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

section {
  height: auto;
  background-size: cover;
  background-position: top center;
}

.sectionOne {
  height: auto;
  background-image: url(images/thebearbg.png);
  background-size: cover;
}

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

.homeTitle {
  font-weight: bolder;
  font-size: 4.1rem;
}

.header-buttons {
  width: auto;
  height: 2.1rem;
  margin: 7.5px 2.5px 0px 2.5px;
}

#copytoclipboardca {
  display: none;
}

.addressTitle {
  font-size: 1rem;
  font-weight: bolder;
  border: 3px solid #e4c372;
  background-color: #2a2112;
  padding: 5px 10px;
  margin-bottom: -15px;
  z-index: 2;
}

.address {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 1.5rem;
  border: 3px solid #e4c372;
  background-color: #2a2112;
  padding: 10px 20px;
  z-index: 1;
}

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

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

#buynow {
  width: 30vw;
  height: auto;
  transition: all 0s;
}

.faqca {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100vw;
}

#buynow:hover {
  scale: 1.025;
  -webkit-filter: brightness(120%);
  transition: 0.25s ease;
}

section .singleButton a:hover {
  scale: 1.05;
  background-color: rgba(255, 255, 255, 0.15);
}

.sectionTwo {
  background-image: url(images/aboutusbg.png);
  height: 100vh;
}

.sectionTwo .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

#blurb {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  width: 45rem;
  background-image: linear-gradient(
    rgba(24, 24, 24, 0.5),
    rgba(17, 17, 17, 0.8)
  );
  color: #fcf6d2;
  padding: 1rem 1rem;
  width: 45rem;
}

.title {
  background-size: 28rem 9rem;
  width: 28rem;
  height: 9rem;
}

.aboutTitle {
  background-image: url(images/ABOUTTITLE.png);
}

.roadmapTitle {
  background-image: url(images/ROADMAPTITLE.png);
}

.tokenomicsTitle {
  background-image: url(images/TOKENOMICSTITLE.png);
}

.faqTitle {
  background-image: url(images/FAQTITLE.png);
}

.tokenomicsfade {
  width: 45rem;
  background-image: linear-gradient(
    rgba(24, 24, 24, 0.5),
    rgba(17, 17, 17, 0.8)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1rem;
}

.sectionThree {
  background-image: url(images/roadmapbg.png);
  height: 100vh;
}

.sectionFour {
  background-image: url(images/tokenomicsbg.png);
  height: 100vh;
}

.tokenomics {
  align-items: center;
  gap: 1.5rem;
}

.landr {
  background-color: #211b1b;
  padding: 10px 20px;
}

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

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

.divBox h2 {
  margin-bottom: 0.5rem;
}

.divBox {
  border: 3px solid #e4c372;
  background-image: linear-gradient(
    rgba(42, 33, 18, 0.8),
    rgba(32, 25, 14, 0.9)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem;
}

.divBoxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0.5rem;
  width: 75vw;
}

.sectionFive {
  background-color: #211b1b;
}

.roadmap {
  gap: 1rem;
}

.faq h1 {
  margin-bottom: 3rem;
}

footer {
  background-color: #211b1b;
  color: #fcf6d2;
  text-align: center;
  font-size: 1.5rem;
  padding-bottom: 2rem;
}

.logoLinksFooter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.linkLogosFooter:hover {
  transform: scale(1.15);
}

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

@media (min-height: 1000px) {
  html {
    font-size: 1.25rem;
  }
}

@media (max-height: 950px) and (min-width: 1200px) {
  .desktop {
    display: initial;
  }

  #menuBtn {
    display: none;
  }
}

@media (min-height: 951px) and (min-width: 1475px) {
  .desktop {
    display: initial;
  }

  #menuBtn {
    display: none;
  }

  .roadmap {
    gap: 1rem;
  }

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

  .blurb div {
    font-size: 1.25rem;
  }
}

@media (max-height: 950px) and (max-width: 800px) {
  .addressTitle {
    display: none;
  }

  .address {
    display: none;
  }

  #copytoclipboardca {
    display: initial;
    background-image: url(images/copytoclipboardca.png);
    background-size: 8rem 8rem;
    width: 8rem;
    height: 8rem;
  }

  #copytoclipboardca:hover {
    -webkit-filter: brightness(80%);
    transition: 0.5s ease;
  }

  #copytoclipboardca:active {
    -webkit-filter: brightness(105%);
    transition: 0s ease;
  }

  .faqca {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 240%;
  }
}

@media (min-height: 951px) and (max-width: 900px) {
  .addressTitle {
    display: none;
  }

  .address {
    display: none;
  }

  #copytoclipboardca {
    display: initial;
    background-image: url(images/copytoclipboardca.png);
    background-size: 8rem 8rem;
    width: 8rem;
    height: 8rem;
  }

  #copytoclipboardca:hover {
    -webkit-filter: brightness(80%);
    transition: 0.5s ease;
  }

  #copytoclipboardca:active {
    -webkit-filter: brightness(105%);
    transition: 0s ease;
  }
}

@media (max-width: 825px) {
  #blurb,
  .tokenomicsfade {
    width: 90vw;
  }
}

@media (max-width: 700px) {
  .content {
    height: auto;
  }

  section {
    height: auto;
  }

  h1 {
    font-size: 10vw;
  }

  h2 {
    font-size: 6vw;
  }

  h3 {
    font-size: 8vw;
  }

  h4 {
    font-size: 4vw;
  }

  h5 {
    font-size: 1.4rem;
  }

  .roadmapTitle {
    font-size: 10vw;
  }

  .roadmap p {
    font-size: 0.9rem;
  }

  .landr {
    width: 80vw;
  }

  .divBoxes {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    width: 70vw;
  }

  .featureimage {
    width: 30vw;
    height: 25vh;
    margin-bottom: 0.5rem;
  }

  .roadmap {
    gap: 0.75rem;
  }

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

  ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .twaddress {
    display: none;
  }
}

@media (max-width: 450px) {
  h5 {
    font-size: 1rem;
  }

  .homeTitle {
    font-size: 2.5rem;
  }

  #buynow {
    width: 10rem;
  }

  .blurb {
    font-size: 0.9rem;
  }

  h3 {
    font-size: 2rem;
  }

  #blurb {
    gap: 0.5rem;
  }

  .divBox {
    padding: 0.25rem 0.25rem;
    margin-top: -10px;
  }

  .divBoxes {
    grid-gap: 1rem;
  }
}
