:root {
    --red: rgb(206,0,0); 	
	--dark: rgb(189,189,189);
	--grey: rgb(219,219,219);
	--lightgrey: rgb(236, 236, 236);
}	
::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: var(--red);
}

::selection{
  color:#fff;
  background: var(--red);
}
