*, *::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: #3a3a3c;
	--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;
}

.light {
	--fg-primary: #1a1a1b;
	--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;
	--bg-uk: #C8102E;
	--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: 'Russo One';
    letter-spacing: 0.2rem;
    font-weight: 400;
    font-size: 20px;
}
.⬛,
.🟨,
.🟩 {
	color: var(--evaluated-key-color);
}
a:link,
a:visited {
	color: inherit;
}

.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;
}
.bg {
	background: var(--bg-sec);
}
section {
	padding: 30px 0;
}
#wordle_unlimited {
	height: 100%;;
}
div[itemprop="mainEntity"] {
	padding: 30px 20px;
	border: 1px solid var(--border-primary);
	margin: 30px 0;
	line-height: 24px;
	border-radius: 4px;
	box-shadow: 1px 1px 5px 0 rgb(1 1 1 / 5%);
}
div[itemprop="mainEntity"] h2 {
	padding: 20px;
	font-size: 18px !important;
	background: var(--bg-sec);
	margin: -30px -20px 20px -20px !important;
	text-align: left !important;
	border-bottom: 1px solid var(--border-primary);
}
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: 'Russo One';
	letter-spacing: 0.2rem;
	font-weight: 400;
	font-size: 34px;
}
.Content h2 {
	text-align: center;
	text-transform: capitalize;
	margin: 20px 0 10px;
	font-family: "Russo One";
	font-weight: 400;
	font-size: 25px;
}
.Content ul {
	margin: 10px 0 10px 20px;
	line-height: 27px;
	list-style: inside;
}
.circle-list li{
    padding: 2em;
	list-style: decimal inside;
    border-bottom: 2px dashed var(--border-primary);
}
.circle-list li:last-child {
	  margin-bottom: 1.5em;
}
.table {
	width: 100%;
	margin-bottom: 1rem;
	color: var(--fg-primary);
	border: 2px solid var(--border-primary);
    border-radius: 4px;
    border-spacing: 0;
    text-align: center;
	}
	
	.table th,
	.table td {
	padding: 0.95rem;
	vertical-align: top;
	border-top: 2px solid var(--border-primary);
	}
	
	.table thead th {
	vertical-align: bottom;
	}
	
	.table tbody + tbody {
	border-top: 2px solid #dee2e6;
	}
	
	.table-sm th,
	.table-sm td {
	padding: 0.3rem;
	}
	
	.table-bordered {
	border: 1px solid #dee2e6;
	}
	
	.table-bordered th,
	.table-bordered td {
	border: 1px solid #dee2e6;
	}
	
	.table-bordered thead th,
	.table-bordered thead td {
	border-bottom-width: 2px;
	}
	
	.table-borderless th,
	.table-borderless td,
	.table-borderless thead th,
	.table-borderless tbody + tbody {
	border: 0;
	}
	
	.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, 0.05);
	}
	
	.table-hover tbody tr:hover {
	color: #212529;
	background-color: rgba(0, 0, 0, 0.075);
	}
	
	.table-primary,
	.table-primary > th,
	.table-primary > td {
	background-color: #b8daff;
	}
	
	.table-primary th,
	.table-primary td,
	.table-primary thead th,
	.table-primary tbody + tbody {
	border-color: #7abaff;
	}
	
	.table-hover .table-primary:hover {
	background-color: #9fcdff;
	}
	
	.table-hover .table-primary:hover > td,
	.table-hover .table-primary:hover > th {
	background-color: #9fcdff;
	}
	
	.table-secondary,
	.table-secondary > th,
	.table-secondary > td {
	background-color: #d6d8db;
	}
	
	.table-secondary th,
	.table-secondary td,
	.table-secondary thead th,
	.table-secondary tbody + tbody {
	border-color: #b3b7bb;
	}
	
	.table-hover .table-secondary:hover {
	background-color: #c8cbcf;
	}
	
	.table-hover .table-secondary:hover > td,
	.table-hover .table-secondary:hover > th {
	background-color: #c8cbcf;
	}
	
	.table-success,
	.table-success > th,
	.table-success > td {
	background-color: #c3e6cb;
	}
	
	.table-success th,
	.table-success td,
	.table-success thead th,
	.table-success tbody + tbody {
	border-color: #8fd19e;
	}
	
	.table-hover .table-success:hover {
	background-color: #b1dfbb;
	}
	
	.table-hover .table-success:hover > td,
	.table-hover .table-success:hover > th {
	background-color: #b1dfbb;
	}
	
	.table-info,
	.table-info > th,
	.table-info > td {
	background-color: #bee5eb;
	}
	
	.table-info th,
	.table-info td,
	.table-info thead th,
	.table-info tbody + tbody {
	border-color: #86cfda;
	}
	
	.table-hover .table-info:hover {
	background-color: #abdde5;
	}
	
	.table-hover .table-info:hover > td,
	.table-hover .table-info:hover > th {
	background-color: #abdde5;
	}
	
	.table-warning,
	.table-warning > th,
	.table-warning > td {
	background-color: #ffeeba;
	}
	
	.table-warning th,
	.table-warning td,
	.table-warning thead th,
	.table-warning tbody + tbody {
	border-color: #ffdf7e;
	}
	
	.table-hover .table-warning:hover {
	background-color: #ffe8a1;
	}
	
	.table-hover .table-warning:hover > td,
	.table-hover .table-warning:hover > th {
	background-color: #ffe8a1;
	}
	
	.table-danger,
	.table-danger > th,
	.table-danger > td {
	background-color: #f5c6cb;
	}
	
	.table-danger th,
	.table-danger td,
	.table-danger thead th,
	.table-danger tbody + tbody {
	border-color: #ed969e;
	}
	
	.table-hover .table-danger:hover {
	background-color: #f1b0b7;
	}
	
	.table-hover .table-danger:hover > td,
	.table-hover .table-danger:hover > th {
	background-color: #f1b0b7;
	}
	
	.table-light,
	.table-light > th,
	.table-light > td {
	background-color: #fdfdfe;
	}
	
	.table-light th,
	.table-light td,
	.table-light thead th,
	.table-light tbody + tbody {
	border-color: #fbfcfc;
	}
	
	.table-hover .table-light:hover {
	background-color: #ececf6;
	}
	
	.table-hover .table-light:hover > td,
	.table-hover .table-light:hover > th {
	background-color: #ececf6;
	}
	
	.table-dark,
	.table-dark > th,
	.table-dark > td {
	background-color: #c6c8ca;
	}
	
	.table-dark th,
	.table-dark td,
	.table-dark thead th,
	.table-dark tbody + tbody {
	border-color: #95999c;
	}
	
	.table-hover .table-dark:hover {
	background-color: #b9bbbe;
	}
	
	.table-hover .table-dark:hover > td,
	.table-hover .table-dark:hover > th {
	background-color: #b9bbbe;
	}
	
	.table-active,
	.table-active > th,
	.table-active > td {
	background-color: rgba(0, 0, 0, 0.075);
	}
	
	.table-hover .table-active:hover {
	background-color: rgba(0, 0, 0, 0.075);
	}
	
	.table-hover .table-active:hover > td,
	.table-hover .table-active:hover > th {
	background-color: rgba(0, 0, 0, 0.075);
	}
	
	.table .thead-dark th {
	color: var(--bg-primary);
	background-color: var(--fg-primary);
	border-color: var(--fg-primary);
	}
	
	.table .thead-light th {
	color: #495057;
	background-color: #e9ecef;
	border-color: #dee2e6;
	}
	
	.table-dark {
	color: #fff;
	background-color: #343a40;
	}
	
	.table-dark th,
	.table-dark td,
	.table-dark thead th {
	border-color: #454d55;
	}
	
	.table-dark.table-bordered {
	border: 0;
	}
	
	.table-dark.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(255, 255, 255, 0.05);
	}
	
	.table-dark.table-hover tbody tr:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.075);
	}
	
	@media (max-width: 575.98px) {
	.table-responsive-sm {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	}
	.table-responsive-sm > .table-bordered {
	border: 0;
	}
	}
	
	@media (max-width: 767.98px) {
	.table-responsive-md {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	}
	.table-responsive-md > .table-bordered {
	border: 0;
	}
	}
	
	@media (max-width: 991.98px) {
	.table-responsive-lg {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	}
	.table-responsive-lg > .table-bordered {
	border: 0;
	}
	}
	
	@media (max-width: 1199.98px) {
	.table-responsive-xl {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	}
	.table-responsive-xl > .table-bordered {
	border: 0;
	}
	}
	
	.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	}
	
	.table-responsive > .table-bordered {
	border: 0;
	}
	
	.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	}
	
	.table-responsive > .table-bordered {
	border: 0;
	}