/*

88888888ba
88      "8b                                  ,d
88      ,8P                                  88
88aaaaaa8P' ,adPPYba, ,adPPYba,  ,adPPYba, MM88MMM
88""""88'  a8P_____88 I8[    "" a8P_____88   88
88    `8b  8PP"""""""  `"Y8ba,  8PP"""""""   88
88     `8b "8b,   ,aa aa    ]8I "8b,   ,aa   88,
88      `8b `"Ybbd8"' `"YbbdP"'  `"Ybbd8"'   "Y888

*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*

88888888ba,                 ad88                        88
88      `"8b               d8"                          88   ,d
88        `8b              88                           88   88
88         88  ,adPPYba, MM88MMM ,adPPYYba, 88       88 88 MM88MMM ,adPPYba,
88         88 a8P_____88   88    ""     `Y8 88       88 88   88    I8[    ""
88         8P 8PP"""""""   88    ,adPPPPP88 88       88 88   88     `"Y8ba,
88      .a8P  "8b,   ,aa   88    88,    ,88 "8a,   ,a88 88   88,   aa    ]8I
88888888Y"'    `"Ybbd8"'   88    `"8bbdP"Y8  `"YbbdP'Y8 88   "Y888 `"YbbdP"'

*/

@font-face {
  font-family: "Montserrat-Variable";
  src: url("/assets/fonts/montserrat-var.ttf");
  font-weight: 100 1000;
  font-stretch: 70% 150%;
  font-style: normal;
}

@font-face {
  font-family: "Domine-Variable";
  src: url("/assets/fonts/domine-var.ttf");
  font-weight: 100 1000;
  font-stretch: 70% 150%;
  font-style: normal;
}

@font-face {
  font-family: "BrandFont";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fonts/brands.woff2") format("woff2");
}

::-webkit-scrollbar {
  width: 8px;
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
}

/*

  ,ad8888ba,
 d8"'    `"8b
d8'
88             ,adPPYba,  88,dPYba,,adPYba,  88,dPYba,,adPYba,   ,adPPYba,  8b,dPPYba,
88            a8"     "8a 88P'   "88"    "8a 88P'   "88"    "8a a8"     "8a 88P'   `"8a
Y8,           8b       d8 88      88      88 88      88      88 8b       d8 88       88
 Y8a.    .a8P "8a,   ,a8" 88      88      88 88      88      88 "8a,   ,a8" 88       88
  `"Y8888Y"'   `"YbbdP"'  88      88      88 88      88      88  `"YbbdP"'  88       88

*/

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

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  --positionX: -500px;
  --positionY: -500px;
  --fa-font-brands: normal 400 1em/1 "BrandFont";
  margin: 0;
  padding: 0;
  background-color: #000;
  color: white;
  font-family: "Montserrat-Variable", sans-serif;
  font-size: 18px;
  cursor: default;
}

.body-wrapper {
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  animation: fadeIn 250ms linear 0s 1 forwards;
  width: 100%;
}

.body-wrapper.go {
  animation: fadeOut 3s linear 0s 1 forwards;
}

a {
  color: white;
  text-decoration: none;
}

h1 {
  font-size: 2em;
  line-height: 1.3em;
}
h2 {
  font-size: 1.8em;
  line-height: 1.3em;
}
h3 {
  font-size: 1.6em;
  line-height: 1.3em;
}
h4 {
  font-size: 1.4em;
  line-height: 1.3em;
}
h5 {
  font-size: 1.3em;
  line-height: 1.3em;
}
h6 {
  font-size: 1.2em;
  line-height: 1.3em;
}

.fab {
  font-family: "BrandFont";
  font-weight: 400;
}

.page {
  margin: 0 100px;
  min-height: 100vh;
}

.content {
  width: 100%;
  display: flex;
}

.loading {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.text-center {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media screen and (max-width: 1000px) {
  .page {
    margin: 0;
  }
}

@media print {
  .page {
    margin: 0;
  }
}
