@import "reset.css";
@import "300.css" (min-width:300px);
@import "600.css" (min-width:600px);
@import "900.css" (min-width:900px);
@import "1300.css" (min-width:1300px);
@import "dark.css" (prefers-color-scheme: dark);

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;700;800&display=swap');

/* Common & basic styles */
html, body {
  height: 100%;
  margin: 0;
}

html {
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-family: 'Inter', -apple-system, sans-serif;
}

.floatClearer {
	clear: both;
}

ol, ul {
	list-style: none;
}

::-moz-selection {
	background: #FF3E17;
	color:#fff;
	text-shadow: none;
}

::selection { 
	background:#FF3E17;
	color:#fff;
	text-shadow: none;
} 

a:link {
	-webkit-tap-highlight-color: #007ee6;
} 