@import url('/assets/WebCore/fonts/JetBrainsMono.css');
* {
	font-family: 'Jetbrains Mono';
	color: white;
	box-sizing: border-box;
}
body {
	background: #000000;
	overflow: hidden;
}
button {
	all: unset;
	/* Remove all inheritable and default styles */
	display: inline-block;
	/* Give it display so you can add box-model stuff */
	cursor: pointer;
	/* Bring back pointer cursor */
}
span {
	line-height: inherit;
	vertical-align: inherit;
	display: inherit;
}
input {
	background: unset;
	border: unset;
}

.__webcore_documentation_page_content span {
	line-height: initial;
	vertical-align: initial;
	display: initial;
}

.__webcore_code_block span {
	line-height: initial;
	vertical-align: initial;
	display: initial;
}
