::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: #7338e83b;
  border-radius: 5px 0 0 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px 0 0 3px;
}
::-webkit-scrollbar-thumb:hover {
  border-radius: 7px 0 0 7px;
}
:root {
  --primary-color: #597fee;
  --secondary-color: color-mix(in srgb, black 20%, white);
  --accent-color: white;
}
@font-face {
  font-family: "font-1";
  src: url("../assets/fonts/Enso-qWRq.ttf") format("truetype");
}
@font-face {
  font-family: "font-2";
  src: url("../assets/fonts/SpaceMono-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "font-3";
  src: url("../assets/fonts/VoxelpointDemo-LVO5G.ttf") format("truetype");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scrollbar-width: thin;
  scroll-behavior: smooth;
  scrollbar-color: var(--primary-color) #7338e83b;
}
body {
  font-family: font-1;
  font-weight: 100;
  background: black;
  color: var(--secondary-color);
}

section .container {
  width: 90%;
  height: 100%;
  margin: auto;
  max-width: 1140px;
  padding: 40px 0 60px 0;
}
h2 {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 15px 0;
  text-align: center;
  color: white;
}
p.title {
  text-align: center;
  max-width: 600px;
  margin: auto;
}
b {
  font-weight: bold;
  color: var(--accent-color);
}

/* Mobile */
.fs-xl {
  font-size: 44px !important;
}
.fs-lg {
  font-size: 24px !important;
}
.fs-md {
  font-size: 18px !important;
}
.fs-sm {
  font-size: 14px !important;
}
/* Extra Small */
@media (max-width: 360px) {
  .fs-xl {
    font-size: 40px !important;
  }
  .fs-lg {
    font-size: 22px !important;
  }
  .fs-md {
    font-size: 16px !important;
  }
  .fs-sm {
    font-size: 12px !important;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .fs-xl {
    font-size: 48px !important;
  }
  .fs-lg {
    font-size: 26px !important;
  }
}
/* Laptop */
@media (min-width: 1280px) {
  .fs-lg {
    font-size: 28px !important;
  }
}
