:root {
	color-scheme: dark;
	
	--text-color: #fafafa;
	--text-color-light: #a1a1aa;
	--text-color-gray: #919191;
	
	--background-color: #202027;
}

@font-face {
	font-family: 'Geist Sans';
	src: url('/static/fonts/geist/Geist-Thin.woff2') format('woff2');
	font-weight: 100;
}

@font-face {
	font-family: 'Geist Sans';
	src: url('/static/fonts/geist/Geist-Light.woff2') format('woff2');
	font-weight: 300;
}

@font-face {
	font-family: 'Geist Sans';
	src: url('/static/fonts/geist/Geist-Regular.woff2') format('woff2');
	font-weight: 400;
}

@font-face {
	font-family: 'Geist Sans';
	src: url('/static/fonts/geist/Geist-Medium.woff2') format('woff2');
	font-weight: 500;
}

@font-face {
	font-family: 'Geist Sans';
	src: url('/static/fonts/geist/Geist-Bold.woff2') format('woff2');
	font-weight: 700;
}

@font-face {
	font-family: 'Geist Sans';
	src: url('/static/fonts/geist/Geist-Black.woff2') format('woff2');
	font-weight: 900;
}

html {
	background-color: var(--background-color);

	color: var(--text-color);
	font-family: 'Geist Sans', sans-serif;
	letter-spacing: -.025em;
}

body {
	margin: 0%;
}

input, textarea, button, select {
	font-family: 'Geist Sans', sans-serif;
}

input, textarea, select {
	height: 20px;

	padding: 8px 12px;

	border-color: #27272A;
	border-style: solid;
	border-width: 1px;
	border-radius: 6px;
	background-color: var(--background-color);
	color: var(--text-color);
	font-size: 16px;
}

textarea:focus, input:focus{
	outline: none;
	border-color: #b5c9ce;
}

.button-1, .button-1-full {
	font-family: 'Geist Sans', sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: -0.01em;
	border-radius: 8px;
	margin: 0 4px;
	cursor: pointer;
	padding: 10px 20px;

}

.button-1 {
	background-color: var(--background-color);
	color: var(--text-color);
	border: 1px solid #333336;
	transition: background-color 0.2s;
}

.button-1:hover {
	background-color: #27272A;
}

.button-1-full {
	background-color: white;
	color: black;
	border: none;
	transition: all 0.2s ease;
}

.button-1-full:hover {
	background-color: #f4f4f4;
	transform: translateY(-1px);
}

.button-1-full:active {
	transform: translateY(0px);
}