@font-face {
	font-family: 'Inter Web';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url(Inter.woff2) format('woff2'), url(Inter.ttf) format('truetype');
}

::selection {
    color: black;
    background-color: #e5e4e2;
}

* {
	font-family: 'Inter Web', sans-serif;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scrollbar-width: thin;
	scrollbar-color: white black;
	color: #e5e4e2;
}

body {
	background-color: black;
	font-style: normal;
	font-optical-sizing: auto;
	overflow: clip auto;
}

.cont {
	min-height: 100vh;
	min-width: 100vw;
	display: flex;
	flex-direction: column;
	gap: 64px;
	justify-content: center;
	text-align: center;
	padding: 8px;
}

a {
	transition: 0.1s linear;
	transition-property: text-decoration-color, color, background-color;
}

a:not(.ds) {
	text-decoration: underline #e5e4e2;
}

a:hover:not(.ds),
a:active:not(.ds) {
	text-decoration-color: #FF00FF;
}

a:hover,
a:active {
	color: #FF00FF;
}

a.ds {
	color: #5865F2;
}

a:hover.ds {
	color: #E0E3FF;
}

h1 {
	font-size: clamp(14px, 5vw, 80px);
}

h1 p {
	font-weight: 900;
}

.h1_subcont {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

span.error {
	color: #fb2c36;
}

[id="file_index"] {
	opacity: 0;
	transition: opacity 1s ease;
	user-select: none !important;
}

[id="file_index"].loaded {
	display: flex;
	flex-direction: column;
	padding: 8px;
	opacity: 1;
}

[id="file_index"] a {
	padding: 8px 4px;
	margin: 2px 0;
	background-color: #101010;
	font-weight: 400;
	text-decoration: none;
	font-size: clamp(10px, 4vw, 14.5px);
	border: 1px solid #2d2d2d;
	display: block;
}

[id="file_index"] a:hover {
	background-color: #1b1b1b;
}

[id="file_index"] a:active {
	background-color: #2d2d2d;
}