:root{
	--colorAccent1: #DDDD3C;
	--colorAccent2: #4C21FF;
	--colorAccent3: #CF29FF;
	--colorAccent4: #7FEDBB;
	--colorAccent5: #FFFEFE;
	--colorText1: #FFFEFE;
	--colorText2: #828289;
	--colorText3: #FFFFFF;
	--colorText4: #CCCCCC;
	--colorBackground: #000110;
	--colorGradient1: linear-gradient(90.56deg, rgba(76, 33, 255, 0.2) 0.21%, rgba(207, 41, 255, 0.2) 100%);
	--colorScrollbarThumb: #242839;
	--colorScrollbarThumbHover: #1f2844;
	--colorScrollbarTrack: #29324e;
	--fontSizeSmalltext: 10px;
	--fontSizeSubtext: 12px;
	--fontSizeText: 14px;
	--fontSizeMiddleText: 16px;
	--fontSizeBigText: 18px;
	--fontSizeSubTitle: 20px;
	--fontSizeTitleMin: 22px;
	--fontSizeTitle: 24px;
	--fontSizeLowTitle: 26px;
	--fontSizeMiddleTitle: 30px;
	--fontSizeBigTitle: 40px;
	--fontSizeBigBigTitle: 42px;
	--fontSizeGigant: 60px;
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scrollbar-color: var(--colorScrollbarThumb) var(--colorScrollbarTrack);
	scrollbar-width: thin;
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: transparent;
}
*::-webkit-scrollbar {
	width: 10px;
}
*::-webkit-scrollbar-track {
	background: var(--colorScrollbarTrack); 
}
*::-webkit-scrollbar-thumb {
	background: var(--colorScrollbarThumb); 
}
*::-webkit-scrollbar-thumb:hover {
	background: var(--colorScrollbarThumbHover); 
}
html{
	font-size: var(--fontSizeText);
	height: 100%;
}
body{
	min-height: 100%;
	display: flex;
	flex-direction: column;
	font-family: var(--firstFont);
	background-color: var(--colorBackground);
	color: var(--colorText1);
}
a{
	color: inherit;
	text-decoration: none;
}
ul{
	list-style-type: none;
}
button, input{
	border:none;
	background: none;
}
button:focus, input:focus{
	outline:none;
}
#root{
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
}