@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat/static/Montserrat-Regular.ttf")
    format("truetype");
}

@font-face {
  font-family: "Ubuntu Sans";
  src: url("./fonts/Ubuntu_Sans/static/UbuntuSans-Regular.ttf")
    format("truetype");
}

@font-face {
  font-family: "Questrial";
  src: url("./fonts/Questrial-Regular.ttf") format("truetype");
}

:root {
  --background-color: black;
  --font-family-1: "Questrial", sans-serif;
  --font-family-2: "Montserrat", sans-serif;
  --font-family-3: "Ubuntu Sans", sans-serif;

  --hero-heading-font: 6rem;
  --hero-line-height: 100px;
  --hero-letter-spacing: -7px;

  --heading-color: rgb(129, 129, 129);
  --heading-font-size: 4.5rem;
  --heading-font-weight: 100;
  --heading-letter-spacing: -3px;
  --heading-line-height: 70px;

  --para-font-color: #7c7c7c;
  --para-font-size: 1.2rem;
  --para-letter-spacing: 0.3px;
  --para-line-height: 20px;

  --joke-para-color: #414040;
}

section {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family-3);
}

.main-section {
  position: relative;
}

.terms-ray-container,
.privacy-ray-container {
  width: 100%;
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.terms-ray-container {
  background-color: #41404000;
  height: 100vh;
}

.privacy-ray-container {
  height: 100vh;
}

.section-body {
  z-index: 2;
  width: 80%;
  padding-bottom: 50px;
}

.main-heading h1 {
  margin-top: 200px;
  color: #b1b1b1;
  font-family: var(--font-family-3);
  font-weight: 400;
  font-size: var(--hero-heading-font);
  line-height: var(--hero-line-height);
  letter-spacing: var(--hero-letter-spacing);
  margin-bottom: 100px;
}

.text-content h2 {
  color: var(--heading-color);
  font-weight: 100;
  font-size: 2rem;
}

.text-content p {
  color: var(--para-font-color);
  font-size: var(--para-font-size);
  line-height: var(--para-line-height);
  letter-spacing: var(--para-letter-spacing);
}

.company-link {
  text-decoration: none;
  color: var(--para-font-color);
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #99171796; /* or white, depending on background */
  transform: scaleX(1);
  transform-origin: right center;
  z-index: 1;
  pointer-events: none;
}

.main-heading h1,
.main-heading h3,
.main-heading p {
  position: relative;
  overflow: hidden;
}

.line {
  position: relative;
  display: inline-block;
}

h3 {
  color: var(--heading-color);
  font-weight: 100;
  font-size: 1.8rem;
}

p a {
  color: var(--para-font-color);
  text-decoration: none;
  font-style: italic;
  transition: color 0.3s ease;
}

p a:hover {
  color: #dadada;
}

.bold-headings {
  color: var(--heading-color);
  font-weight: 600;
  font-size: var(--para-font-size);
}
