

/*
	#717dbc

	j stuff i reuse n a combination of 2 colors i happened 2 find
*/

:root {
	--text: #9499EA;
	--world: #1e2233;
	--mono-text: #653abc;
	--mono-world: #0f101c;
	--orangish: #bf5c00;
}

* {
	color: var(--text);
/*	background-color: var(--world); */
}

body {
	background-color: var(--world);
}

code {
	color: var(--mono-text);
	background-color: var(--mono-world);
}

.cnt {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.ref {
	color: var(--orangish);
	position: relative;
	top: -5px;
	font-size: 10.7px;
	text-decoration: none;
}



