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

:root {
	font-size: 16px;
	--color-text: #fff;
	--color-bg: #000;
	--color-bg-alt: hsl(15deg 55% 6%);
	--color-link: rgba(255,255,255,0.5);
	--color-link-hover: #fff;
	--color-title: #e93f33;
	--card-width: 200px;
	--card-height: 300px;
	--headfont: "stinger-variable", sans-serif;
	--textfont:"tenon", sans-serif;
	--card-transition-duration: 800ms;
	--card-transition-easing: ease;
    --zIndex-overlay: 900;
    --zIndex-navigation: 905;
    --colors-text: white;
    --colors-background: black;
  }

html {
	scroll-behavior: smooth;
  }

body {
	margin: 0;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: var(--textfont);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

  /* Hide scrollbar for Firefox */
  body {
	scrollbar-width: none;
  }
  
  /* Hide scrollbar for Webkit browsers (Chrome, Safari) */
  body::-webkit-scrollbar {
	display: none;
  }

h1,h2,h3,h4,h5,h6,button,th {
	font-family: var(--headfont);
	font-variation-settings: "wdth" 140, "wght" 300;
	letter-spacing: 0.1em;
}


h1{
    font-size: 4rem !important;
    font-weight: bold;
}

h2 {
    font-size: 3.5rem !important;
    font-weight: bold;
}

h3{
    font-size: 3rem !important;
    font-weight: bold;
}

h4{
    font-size: 2.5rem !important;
    font-weight: bold;
}

h5{
    font-size: 2rem !important;
    font-weight: bold;
}

h6 {
    font-size: 1.5rem !important;
    font-weight: bold;
}

p {
    font-size: 1.2rem !important;
}