@font-face{
    font-family: "Jost";
    src: url("/Jost-Regular.woff2") format("woff2"), url("/Jost-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: block;
	line-height: 1;
}

@font-face{
    font-family: "Barlow Condensed";
    src: url("/BarlowCondensed-Medium.woff2") format("woff2"), url("/BarlowCondensed-Medium.woff") format("woff");
    font-style: normal;
    font-display: block;
	line-height: 1;
}

:root{
	--layer-1: #000000;
	--layer-2: #111111;
	--layer-3: #222222;
	--layer-4: #333333;
	--layer-5: #444444;
	--layer-6: #555555;
	--layer-7: #666666;
	--layer-8: #777777;
	--layer-9: #888888;
	--layer-10: #999999;

	--layer-1-translucent: rgb(0, 0, 0, 0.85);
	--layer-2-translucent: rgb(17, 17, 17, 0.85);
	--layer-3-translucent: rgb(34, 34, 34, 0.85);

	--white: #ffffff;
	--azure: #00a1ff;
	--bright-green: #60d937;
	--yellow: #ffcc00;
	--red: #ed220d;

	--forest-green: #21332c;
	--cinnamon: #b06e3a;
	--wine-red: #501d21;
	--tan: #e6d8b4;
	--navy: #0c1b2e;
	--umber: #312826;
	--harvest-gold: #cd9438;
	--cranberry-red: #5b1917;

	--serif: "Georgia", serif;
	--sans-serif: "Jost", "Futura", sans-serif;
	--condensed: "Barlow Condensed", "DIN Condensed", sans-serif;
}

*{
  	box-sizing: border-box;
  	padding: 0;
	letter-spacing: 0.09em;
  	margin: 0;
}

*{
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
}
  
*::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}
  

body{
	background-color: var(--layer-1);
	position: relative;
}

h1, h2, h3, h4, h5, h6{
	font-weight: normal;
}

a{
	outline: none;
  	color: inherit;
  	text-decoration: none;
}

button{
	outline: none;
}

ul{
	list-style: none;
	list-style-type: none;
}

i{
	font-size: inherit;
	color: inherit;
}
