:root {
	--text:  #ffffff;
	--background: #000000;
  --highlight: #FF0000; /*#eeba30;*/
	--seafoam: #05d5a1;
	--ice: #22aadd;
	--teal: #00ADB5;
	--lime: #33ff22;
	--goldenrod: #eeba30;
	--pumpkin: #ff6400;
	--rose: #ff3399;
	--tomatosoup: #FF6347;
	--forest: #3CB371;
	--grape: #370fff;
}

::selection {
  /*background: var(--text);*/
	color: var(--highlight);
	text-decoration: none;
}

body {
	text-rendering: optimizeLegibility;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	background-color: var(--background);
	color: var(--text);
	-webkit-tap-highlight-color: transparent;
	transition: color ease-in-out .15s, background-color ease-in-out .15s;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 18px;
}

.nodecor {
	text-decoration: none;
	color: var(--text);
	transition: color ease-in-out .15s;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.centered {
	display: block;
	margin: 0 auto;
}
