:root {
	  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	box-sizing: border-box;
	--orange: #ff8c00;
	
}

::selection {
	background-color: var(--orange);
	color: white;
}

html, body {
	margin: 0;
	padding: 0;
	color: white;
}

a {
	text-decoration: none;
	color: inherit;
}

