@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{
	/* Colors */
	--black: #000000;
	--very-dark-grey: #111111;
	--dark-grey: #333333;
	--grey: #777777;
	--white: #ffffff;
	--azure: #00a1ff;
	--bright-green: #60d937;
	--black-translucent: rgb(0, 0, 0, 0.85);
	--very-dark-grey-translucent: rgb(17, 17, 17, 0.85);

	/* Fonts */
	--serif: "Georgia", serif;
	--sans-serif: "Jost", "Futura", sans-serif;
	--condensed: "Barlow Condensed", "DIN Condensed", sans-serif;

	/* Sizes */
	--font-size: 12px;
	--letter-spacing: 0.09em;
	--line-height: 1.8;
	--field-size: 32px;
	--icon-size: 14px;
	--spacing-small: 6px;
	--spacing-medium: 12px;
	--spacing-large: 18px;
	--border-width: 1px;
	--border-radius: 2px;
	--minimum-button-width: 100px;
	

	/* Variables used for scaling inputs so they don't zoom on mobile */
	--font-size-number: 12; /* needs to match --font-size */
	--field-size-number: 32; /* needs to match --field-size */
	--spacing-small-number: 6; /* needs to match --spacing-small */
	--spacing-medium-number: 12; /* needs to match spacing large number */
	--scale: calc(var(--font-size-number) / 16);
	--scaled-width-and-height: calc(calc(16 / var(--font-size-number)) * 100%);
	--scaled-spacing-small: calc(calc(calc(16 / var(--font-size-number)) * var(--spacing-small-number)) *var(--border-width));
	--scaled-spacing-medium: calc(calc(calc(16 / var(--font-size-number)) * var(--spacing-medium-number)) *var(--border-width));
}

::selection{
	background-color: var(--dark-grey);
	color: var(--white);
}

body, div, p, h1, h2, h3, h4, h5, h6, ul, ol, li, input, textarea, hr{
  	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	border: none;
	border-collapse: collapse;
	border-radius: 0;
	outline: none;
	resize: none;
	font-family: var(--serif);
	font-weight: normal;
	font-size: var(--font-size);
	color: var(--white);
	text-decoration: none;
	text-align: start;
	letter-spacing: var(--letter-spacing);
	line-height: var(--line-height);
	list-style: none;
	list-style-type: none;
	margin: 0;

	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
}

*{
	box-sizing: border-box;
}
  
*::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}
  

body{
	background-color: var(--black);
	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;
}

hr{
	height: var(--border-width);
	background-color: var(--white);
}
