/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
  Theme
*/

:root {
  
/* Dark Mode Grayscale */
--bl-1: #000000;
--bl-2: #1A1A1A;
--bl-3: #222222;
--bl-4: #4D4D4D;

/* Light Mode Grayscale */
--wh-1: #ffffff;
--wh-2: #f7f7f7;
--wh-3: #efefef;
--wh-4: #e5e5e5;
  
  /* Accent Blue & Red */
  --ac-1: #000066;
  --ac-2: #991B1B;
  
  font-family: system-ui;
  font-size: 100%;

}

html,
html[data-theme=light] {

  /*  Primary (Light)
  */

  --pr-1: var(--wh-1);
  --pr-2: var(--wh-2);
  --pr-3: var(--wh-3);
  --pr-4: var(--wh-4);

  /*  Secondary
  */

  --sc-1: var(--bl-1);
  --sc-2: var(--bl-2);
  --sc-3: var(--bl-3);
  --sc-4: var(--bl-4);

}

html[data-theme=dark] {

  /*  Primary (Dark)
  */

  --pr-1: var(--bl-1);
  --pr-2: var(--bl-2);
  --pr-3: var(--bl-3);
  --pr-4: var(--bl-4);
  
  /*  Secondary
  */

  --sc-1: var(--wh-1);
  --sc-2: var(--wh-2);
  --sc-3: var(--wh-3);
  --sc-4: var(--wh-4);

}

html[lang=ar] {
  direction: rtl;
}

body {
  font-display: swap;
  background: var(--pr-1);
  color: var(--sc-1);
}

button, input, output, select, textarea, a {
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}