*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: background-color 0.2s ease;
}
:root {
	font-family: Arial, sans-serif;
	background: var(--bg-primary);
	color: var(--fg-primary);
	font-size: var(--fs-regular);
	user-select: none;
	-webkit-user-select: none;
	overflow: hidden;
	height: 100%;

	--fs-tiny: 12px;
	--fs-small: 14px;
	--fs-regular: 16px;
	--fs-medium: 20px;
	--fs-large: 36px;

	--game-width: 650px;

	--fg-primary: #d7dadc;
	--fg-secondary: #818384;
	--icon-color: #565758;
	--border-primary: #3a3a3c;
	--border-secondary: #272729;
	--bg-secondary: #1a1a1b;
	--bg-primary: #121213;
	--bg-sec: #F4F6F5;
	--bg-brand-color: #212121;
	--bg-brand-sec: #EEEEEE;
	--red: #9C2323;
	--color-present: #b59f3b;
	--color-correct: #538d4e;
	--color-absent: var(--border-primary);
	--evaluated-key-color: var(--fg-primary);
	--key-bg: var(--fg-secondary);

}
body { 
	height: 100%; 
	overflow: auto;
}
.keyboard, .board {
	font-family: "M PLUS Rounded 1c", sans-serif;
}
.light {
	--fg-primary: #322C2B;
	--fg-secondary: #787c7e;
	--icon-color: var(--fg-secondary);
	--border-primary: #d3d6da;
	--border-secondary: var(--border-primary);
	--bg-secondary: #e0e0e0;
	--bg-primary: #ffffff;
	--bg-sec: #f9f9f9;
	--red: #C42C2C;
	--color-present: #c9b458;
	--color-correct: #6aaa64;
	--color-absent: var(--fg-secondary);
	--evaluated-key-color: var(--bg-primary);
	--key-bg: var(--border-primary);
}

.colorblind {
	--color-correct: #f5793a;
	--color-present: #85c0f9;
}

h3 {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 15px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 20px;
}
.⬛,
.🟨,
.🟩 {
	color: var(--evaluated-key-color);
}
a:link,
a:visited {
	color: inherit;
}
header h1 {
    font-family: "M PLUS Rounded 1c", sans-serif !important;
}
header .icons svg {
	margin: 0 10px;
}
.light header h1 {
	color: var(--bg-brand-color) !important;
	-webkit-text-stroke-color: var(--bg-brand-color) !important;
}
header h1 {
	color: var(--bg-brand-sec) !important;
	-webkit-text-stroke-color: var(--bg-brand-sec) !important;
}
.tutorial {
	--arrow-size: 10px;
	--padding: 10px;
	font-size: var(--fs-small);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: initial;
	position: absolute;
	top: calc(var(--arrow-size) + var(--height));
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	max-width: min(var(--game-width), 95vw);
	display: flex;
	align-items: center;
	padding: var(--padding);
	border-radius: 4px;
	color: var(--bg-primary);
	background: var(--fg-primary);
	z-index: 1;
}
.tutorial::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	top: calc(-2 * var(--arrow-size));
	border: var(--arrow-size) solid transparent;
	border-bottom: var(--arrow-size) solid var(--fg-primary);
}
.ok {
	padding: 10px;
	margin-left: var(--padding);
	border-radius: 4px;
	color: white;
	background: var(--color-correct);
	cursor: pointer;
}

.light footer {
	background: var(--bg-brand-sec);
	text-align:center ;
}
footer {
	background: var(--border-secondary);
	text-align:center ;
}
footer a {
	text-decoration: none;
	font-weight: 600;
    color: var(--bg-brand-color) !important;
	margin: 5px 10px;
	font-size: 15px;
    display: inline-block;
}
section {
	padding: 30px 0;
}
#wordle_unlimited {
	height: 100%;;
}
.light div[itemprop="mainEntity"] {
	padding: 30px 20px;
	background: var(--bg-brand-sec);
	margin: 30px 0;
	line-height: 24px;
	border-radius: 8px;
}
div[itemprop="mainEntity"] {
	padding: 30px 20px;
	background: var(--border-secondary);
	margin: 30px 0;
	line-height: 24px;
	border-radius: 8px;
}
div[itemprop="mainEntity"] h2 {
	padding: 0px 0px 15px;
    font-size: 18px !important;
    margin: 0;
    text-align: left !important;
}
div[itemprop="mainEntity"] ol {
	list-style: decimal inside;
}

.Content ul li span, div[itemprop="mainEntity"] ol li span {
	padding: 1px 10px;
	border-radius: 4px;
	margin-left: 5px;
}
.Content {
	max-width: 800px;
	font-size: var(--fs-regular);
	padding: 30px 20px;
	position: relative;
	margin: auto;
}
.Content p {
	line-height: 24px;
	padding: 10px 0;
}
.Content img {
	border: 1px solid var(--border-secondary);
	border-radius: 4px;
	margin: 10px auto;
	display: block;
	width: 100%;
    max-width: fit-content;
}
.Content h1 {
	text-align: center;
	text-transform: capitalize;
	margin: 0px 0 10px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 30px;
}
ol {
    counter-reset: listNumbering;
}
ol li {
    padding: 10px 10px 10px 30px;
    margin-left: -23px;
	list-style: none !important;
}
li {
    font-size: 1em;
    counter-increment: listNumbering;
}

li:before {
    content: counter(listNumbering,decimal-leading-zero) '.';
	font-size: 1em;
    font-weight: 600;
    padding-right: 10px;
	font-family: "M PLUS Rounded 1c", sans-serif;
}
.Content h2 {
	text-align: center;
	text-transform: capitalize;
	margin: 20px 0 10px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 25px;
}
.Content ul {
	margin: 10px 0 10px 25px;
	line-height: 27px;
	list-style: inside;
}
.Content ul li {
    list-style: none;
    padding: 10px 10px 10px 30px;
    margin-left: -23px;
}
.light .Content ul li {
	border-bottom: 1px solid var(--bg-brand-sec);

}
.Content ul li {
	border-bottom: 1px solid #3a3a3c
}
.Content ul li:before {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAACP0lEQVR4nO2Zv28TMRTHT8rMFKifT5EoIh3YgK2g2ClVJraiiH8BsaH+A1VnKjFQfg1Bas+2xFgh6NiJsUu42yoVGECMbWGqZPQskrohQblLzsHIX+npDdHZ34/fc3J6iaKgoKCgf1qU8ouEsmcE2Beg7BQo1+UGOyXAPxPKXwAsXZ7IPCFsCSj7Vr5pPiqOCGncKXzyMzavMQjl3wlZnMt/+pQ97y8C/BNWI4ralah0tSsADUYoO7QgNnMvg33YX8CYd6u5uLl8BsAOcy9gX1g3Jz+odsW+2FFe2X04+JlIxYLI5DuRyR8iU7qsAMvD1sc39akAoPkkk8dlGhdDAEQqj1RXXZ0YIEnVWxfmxSBApjTuPXkFSm4b8RcAkamTPAAHvx8+OA/gxrwYDvDHfRypSzVeB2CrmL0EGKUAkIUKjK9q9dYFb1sIgHXMw8A6fgLQ3rvQ+fcQjwD4iB+yAKBDBXxpoZu3V8z+mL28Ay8/dPSjJ2smewkghkQAEKECaux2eb2/rdflhslettBi677ZH7OXADRumv0xewkAlocCAMMHW67Mb3VF33xcK1ABe7RIKWu4BliXG32Aa9fvFgAYGO7irBIrUbbx7a405tF0b/97Dx4WACB8Hufzsx6vX1lo6c29V/kBzibE7OuszM/XW3pNPLYrNP5gq6c4Xq4C5U+xjVz8xRTXmqZ9sG3sk8dIMvU+mlQ4JcZBq8uvU2HmovKnTOWNaBrCKXGSqh0sqQPzJ0kqd6dmPijoP9MvWmaPyAlIiXIAAAAASUVORK5CYII=);
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background-size: contain;
    left: 18px;
}

.circle-list li{
    list-style: decimal inside;
    padding: 1em;
    border-bottom: 2px dashed var(--border-primary);
}

.circle-list li:last-child {
	  margin-bottom: 1.5em;
}
footer .content {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
    max-width: 1200px;
    margin: 0px auto;
}