@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/inter-400.woff2);
	unicode-range: U+000-5FF;
}

@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/inter-700.woff2);
	unicode-range: U+000-5FF;
}



:root {
	--main: #1a1b26;
	--text: #c0caf5;
	--line: #414868;
	--darker: #171721;

	--transparent_90: rgba(26, 27, 38, .1);
	--transparent_80: rgba(26, 27, 38, .2);
	--transparent_70: rgba(26, 27, 38, .3);
	--transparent_60: rgba(26, 27, 38, .4);
	--transparent_50: rgba(26, 27, 38, .5);
	--transparent_40: rgba(26, 27, 38, .6);
	--transparent_30: rgba(26, 27, 38, .7);
	--transparent_20: rgba(26, 27, 38, .8);
	--transparent_10: rgba(26, 27, 38, .9);

	--red: #f7768e;
	--green: #9ece6a;
	--blue: #7aa2f7;
	--purple: #bb9af7;
	--orange: #ff9e64;
	--yellow: #e0af68;
	--dark: #414868;
	--light: #eceff4;

	--font: 'Inter', sans-serif;
	--fontsize: 1rem;
	--fontweight: 400;
	--lineheight: 1.5rem;
}


html, body {
	background-color: var(--main);
	color: var(--text);
	font-family: var(--font);
	font-size: var(--fontsize);
	font-weight: var(--fontweight);
	line-height: var(--lineheight);
	margin: 0;
	padding: 0;
}

body {
	overflow-y: scroll;
}



a {
	color: var(--blue);
	text-decoration: underline;
}

p {
	hyphens: auto;
	margin: 0;
	padding: 10px 0;
	text-align: justify;
	word-wrap: break-word;

	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-o-hyphens: auto;
}

p:first-child {
	padding-top: 0;
}

p:last-child {
	padding-bottom: 0;
}

h1 {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
	font-size: 1.6rem;
	margin: 0 0 10px 0;
	line-height: 100%;
	padding: 0;
}

h1 > svg,
h1 > a {
	margin-right: 10px;
}

h1 > a {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
}

h2 {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
	font-size: 1.3rem;
	margin: 50px 0 0 0;
	line-height: 100%;
	padding: 0;
}

h3 {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
	font-size: 1.1rem;
	margin: 20px 0 0 0;
	line-height: 100%;
	padding: 0;
}

svg {
	height: auto;
	stroke-width: 1.5;
	width: 20px;
}

ul > li {
	padding: 2px 0;
}

ol > li {
	padding: 5px 0;
}



#website {
	align-items: stretch;
	display: flex;
	flex-flow: row nowrap;
	margin: 50px auto;
	width: 800px;
}



.empty {
	cursor: default;
	opacity: .2;

	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-webkit-user-drag: none;
}



svg.icon-tabler-loader-2 {
	animation: rotation 1s linear infinite;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}






@media only screen and (max-width: 830px) {

	p {
		text-align: left;
	}

	#website {
		margin: 0;
		padding: 10px;
		width: calc(100% - (10px * 2));
	}

}
