html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #141414;
}
body {
  display: grid;
  grid-template-rows: auto;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6,p,a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: var(--white);
}

h1,h2 {
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}
h2 {
  font-weight: normal;
  font-size: 220%;
}
b {
  font-weight: 600;
}
a {
  color: var(--white);
  text-decoration:none;
}
a:hover {
  color: var(--lime-green);
}
img {
  max-width: 100%;
}

/* scrollbars ------------------------------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: none;
  padding: 1px;
}

::-webkit-scrollbar-thumb {
  background: var(--lime-green);
  border: 1px solid rgb(20,20,20);
  border-radius: 0.5rem;
}

:root {
  --menu-height: 2rem;
  /* font sizes ------------------------------ */
  --text-scale: 1;
  --main-text: calc(var(--text-scale) * 100%);
  /* colours --------------------------------- */
  --lime-green: #d7df23;
  --dark-green: #00211B;
  --white: #F1F1F1;
  --background-colour: #141414;
  /* other stuff ----------------------------- */
  --page-padding: 1.3rem;
}


/* ---------------------------- mobile --------------------------------- */
@media only screen and (max-width: 600px) {
  :root {
    --text-scale: 0.8;
  }
}

/* ---------------------------- tablet --------------------------------- */
@media only screen and (min-width: 600px) and (max-width: 1025px) {
  :root {
    --menu-height: 2.5rem;
  }
}

/* ---------------------------- desktop -------------------------------- */
@media only screen and (min-width: 1025px) and (max-width: 2000px) {
  :root {
    --text-scale: 1.2;
    --menu-height: 3rem;
  }
}

/* ---------------- someone with too much money ------------------------ */
@media only screen and (min-width: 2000px) {
  :root {
    --text-scale: 1.5;
    --menu-height: 4rem;
  }
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  height: 100%;
}

.home-content .backgrnd {
  opacity: 0.6 !important;
}
.page {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  padding-bottom: 1.5rem;
  align-content: flex-start;
}
.page-content {
  justify-self: center;
  max-width: 1350px;
  padding: var(--page-padding);
  display: grid;
  grid-gap: 3rem;
  width: calc(100% - var(--page-padding)*2);
}
.page h3 {
  font-size: 200%;
  font-weight: 900;
  line-height: 115%;
}
.page h5 {
  font-size: 100%;
  font-weight: bolder;
}
.page p {
  font-weight: 500;
  line-height: 120%;
  font-size: 110%;
}
.page .sub-title {
  margin-bottom: 1rem;
}

hr {
  width: 100%;
  height: 1px;
  background: white;
  opacity: 0.7;
  margin-bottom: 1rem;
  align-self: center;
}


/* ---------------------------- mobile --------------------------------- */
/* @media only screen and (max-width: 600px) {
  .page h3 {
    font-size: 220%;
  }
  .page h5 {
    font-size: 130%;
  }
} */

/* ---------------------------- tablet --------------------------------- */
@media only screen and (min-width: 600px) and (max-width: 1025px) {
  .page h3 {
    font-size: 230%;
  }
  .page h5 {
    font-size: 130%;
  }
}

/* ---------------------------- desktop -------------------------------- */
@media only screen and (min-width: 1025px) and (max-width: 2000px) {
  .page h3 {
    font-size: 250%;
  }
  .page h5 {
    font-size: 170%;
  }
  .page p {
    font-size: 125%;
  }
}

/* ---------------- someone with too much money ------------------------ */
@media only screen and (min-width: 2000px) {
  .page h3 {
    font-size: 270%;
  }
  .page h5 {
    font-size: 190%;
  }
  .page p {
    font-size: 145%;
  }
}
