@font-face {
  font-family: exo;
  src: url(Exo-Regular.otf);
}

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

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

body {
  color: black;
  font-family: exo, sans-serif, Arial, Helvetica;
  background-color: black;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

.availabilityTitle h1,
.availabilityTitle p,
.tokenomicsTitle h1,
.additional h2,
.blurb h2,
.blurb div,
.faq h1 {
  color: #fff;
}

/* header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, visibility 0s 0.3s linear;
} */

header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  &.can-animate {
    transition: transform 0.3s ease, visibility 0s 0.3s linear;
  }
  &.is-fixed {
    background: rgba(255, 255, 255, 0.9);
    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;
}

.backdrop {
  display: none;
  position: fixed;
  inset: 0;
  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/RHBlogo.svg);
  background-size: 2.5rem 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
}

#menuBtn {
  font-size: 1.5rem;
}

.headerBtns,
#menuBtn {
  padding: 5px 10px;
}

.headerBtns:hover {
  background-color: aqua;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  transition: 0.2s ease;
}

.menuBtns:hover {
  background-color: aqua;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  transition: 0.2s ease;
}

#menuBtn:hover {
  background-color: aqua;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  transition: 0.5s ease;
}

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

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: #fff;
}

.content {
  width: 100vw;
  height: auto;
  padding: 12.5vh 5vw;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.sectionOne {
  background-image: url(images/background2.gif);
}

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

.homeLogo {
  background-image: url(images/RHBlogo.svg);
  background-size: 20rem 20rem;
  width: 20rem;
  height: 20rem;
}

.addressTitle,
.address {
  font-size: 1.5rem;
}

.address {
  display: flex;
  justify-content: center;
  gap: 5px;
}

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

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

section .singleButton a {
  display: block;
  background-color: transparent;
  padding: 12px 100px;
  border: 3px solid white;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  max-width: 85vw;
  margin: auto;
}

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

.sectionTwo {
  background: rgb(0, 28, 38);
  background: linear-gradient(
    180deg,
    rgba(0, 28, 38, 1) 5%,
    rgba(0, 20, 27, 1) 95%
  );
}

.aboutUsTitle {
  color: #fff;
  margin-bottom: 4rem;
}

.blurb {
  border: 2px solid white;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.35)
  );
  padding: 5vw;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sectionThree {
  background: rgb(0, 20, 27);
  background: linear-gradient(
    180deg,
    rgba(0, 20, 27, 1) 5%,
    rgba(0, 14, 19, 1) 95%
  );
}

.packages,
.additionalBoxes {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  color: #fff;
}

.package,
.additionalBox {
  border: 2px solid white;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.35)
  );
  border-radius: 1rem;
  height: 100%;
  padding: 3vw 5vw;
  text-align: left;
}

.package {
  margin-bottom: 3rem;
}

.introPackage:hover {
  background-color: rgb(239, 239, 239, 0.5);
  border: 2px solid rgb(239, 239, 239, 0.5);
}

.premPackage:hover {
  background-color: rgb(233, 198, 0, 0.5);
  border: 2px solid rgb(233, 198, 0, 0.5);
}

.additionalBox {
  text-align: center;
}

.availability,
.tokenomics {
  gap: 3rem;
}

.giveToThePoor {
  margin-bottom: 2rem;
}

li {
  list-style-type: none;
}

.sectionFour {
  background: rgb(0, 14, 19);
  background: linear-gradient(
    180deg,
    rgba(0, 14, 19, 1) 5%,
    rgba(0, 7, 9, 1) 95%
  );
}

.features {
  color: #fff;
}

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

.featureimage {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}

.tokenomicsImage {
  width: 75px;
  height: 75px;
  margin-top: 1rem;
}

.tokenomicsSplit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.divBox {
  border: 2px solid white;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.35)
  );
  border-radius: 1rem;
  height: 100%;
  padding: 3vw 5vw;
}

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

.sectionFive {
  background: rgb(0, 7, 9);
  background: linear-gradient(
    180deg,
    rgba(0, 7, 9, 1) 5%,
    rgba(0, 0, 0, 1) 95%
  );
}

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

footer {
  background-color: black;
  color: #fff;
  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: 50px;
  height: auto;
  transition: transform 0.2s;
  animation: fadeIn 3s;
}

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

.sectionSix {
  background-color: black;
}

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

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 770px) {
  .content {
    height: 100vh;
  }

  section {
    height: 100vh;
  }

  /* h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.25rem;
  } */

  .desktop {
    display: initial;
  }

  #menuBtn {
    display: none;
  }

  header .logo {
    display: inline-block;
    background-image: url(images/RHBlogo.svg);
    background-size: 2.5rem 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .packages,
  .additionalBoxes {
    grid-template-columns: 1fr 1fr;
  }

  .availability {
    gap: 4rem;
  }

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

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

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

  section {
    height: auto;
  }

  h1 {
    font-size: 10vw;
  }

  h2 {
    font-size: 5vw;
  }

  h3 {
    font-size: 4vw;
  }

  .packages,
  .additionalBoxes {
    grid-template-columns: 1fr;
  }

  .homeLogo {
    background-size: 70vw 70vw;
    width: 70vw;
    height: 70vw;
  }

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

  /* .blurb div {
    font-size: 1rem;
  } */

  .featureimage,
  .tokenomicsImage {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
  }
}
