/* Modern CSS Reset */
#root {
	isolation: isolate;
}
:focus-visible {
  outline: 2px dashed #555;
  outline-offset: 4px;
}
:root {
  --font-body: 'Noto Sans', 'Arial', sans-serif;
  --font-heading: 'Georgia', serif;
  --text-color: #070707;
  --link-color: #0077cc;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: none;
}
body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
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;
}
b {
	font-weight: 777;
}
/* Set defaults for block elements */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol {
	list-style-type: decimal; 
	margin: 20px 0; /* Remove outside margin */
	padding: 0 1rem; /* Add inner padding */
	counter-reset: list-counter; /* Reset counter for custom numbering */
}

li {
	margin-bottom: 0.5rem; /* Space between items */
	color: #333; /* Text color */
	line-height: 1.5; /* Adjust line spacing */
	text-align: left;
	font-size: 16px;
}

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;
}

a {
	color: inherit;
	text-decoration: none;
}
html, body, p {
	font-size: 16px;
	line-height: 1.3;
	font-family: 'Noto Sans', 'Arial', sans-serif;
	font-weight: normal;
}
p {
	text-align: left;
	padding: 0 5px 10px 5px;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 777;
	line-height: 1.2;
	color: #070707;
	font-family: 'Georgia', serif;
	margin: 5px auto;
	padding: 5px 5px 0 5px;
}	
h1 {		font-size: 48px;	}
h2 {		font-size: 40px;	}
h3 {		font-size: 34px;	}
h4 {		font-size: 28px;	}
h5 {		font-size: 24px;	}
h6 {		font-size: 20px;	}
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
	margin: 0 auto;
}
