@font-face {
  	font-family: "frogSerif";
	font-display: block;
	font-style: normal;
	src: url("/assets/fonts/frogSerif-Regular.woff2") format("woff2")
}
@font-face {
  	font-family: GT America;
	src: url("/assets/fonts/GT-America-Standard-Regular.woff2") format("woff2");
  	font-weight: 400;
}
@font-face {
  	font-family: GT America;
	src: url("/assets/fonts/GT-America-Standard-Medium.woff2") format("woff2");
	font-weight: 500;
}
@font-face {
  	font-family: GT America;
	src: url("/assets/fonts/GT-America-Standard-Bold.woff2") format("woff2");
	font-weight: 700;
}

html,
body {
	margin: 0;
	min-height: 100vh;
	position: relative;
	box-sizing: border-box;
}

*, ::after, ::before {
	box-sizing: inherit;
}

body {
	font-family: "GTAmericaRegular", sans-serif;
	font-weight: 400;
	line-height: 1;
	font-size: 17px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
}

small {
	color: rgb(158, 158, 158);
}

main {
	width: 100%;
	max-width: 900px;
	padding: 20px;
}

.c-logo {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}

.c-intro-content {
	text-align: center;;
}

.c-intro-content img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 200px;
	margin: 0 auto;
}

.c-intro-content h1 {
	margin: 1rem 0;
	font-family: "QuartoLight", serif;
	font-weight: 300;
	font-size: 76px;
    line-height: 76px;
}

.c-intro-content p {
	margin: 0;
}

.usn {
	user-select: none;
}

.c-install {
	margin: 2rem 0 0;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.c-install p {
	margin: 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.05rem;
}

.c-install-links {
	--size: 30px;
	--pad: 4px;

	line-height: 1;
	display: flex;
	flex-flow: row nowrap;
	gap: 10px;
	margin: 0;
	padding: 0;
}

.c-install-links input {
	display: none;
}

.c-install-links span {
	font-size: 16px;
	cursor: pointer;
	display: block;
	height: calc(var(--size) + (var(--pad) * 2));
	line-height: calc(var(--size) + (var(--pad) * 2));
	padding: 0 1rem 0 calc(1rem + var(--size));
	border-radius: var(--size);
	box-shadow: 0 0 0px 2px rgb(207, 207, 207);
	color: grey;
}

/* .c-install-links input + span {} */

.c-install-links input:checked + span {
	box-shadow: 0 0 0px 2px rgb(0, 0, 0);
	color: black;
}

.c-install-link {
	background-size: contain;
	background-size: var(--size) auto;
	background-position: var(--pad) center;
	background-repeat: no-repeat;
}

.c-install-link--chrome { background-image: url(/assets/icons/google-chrome.svg); }
.c-install-link--edge { background-image: url(/assets/icons/microsoft-edge.svg); }

.c-credits {
	margin: 2rem 0 0;
	text-align: center;
}

.c-credits p {
	margin: 0;
	font-size: 9pt;
	line-height: 1;
	color: rgb(158, 158, 158);
}

.c-credits a {
	color: inherit;
}

.c-credits a:is(:hover, :focus-visible) {
	text-decoration: none;
	opacity: 0.9;
}

.c-instructions a {
	color: rgb(0, 0, 199);
}

.c-instructions[data-show="false"] {
	display: none;
}

.c-instructions[data-show="true"] {
	display: block;
	margin: 20px 0 0;
	padding: 20px;
	box-shadow: inset 0 0 1px 1px rgb(180, 180, 180);
	border-radius: 10px;
}

.c-instructions :is(ol, li) {
	margin: 0;
	padding: 0;
	text-indent: 0;
}

.c-instructions ol {
	list-style: none;
	counter-reset: step 0;
	padding: 0 0 0 30px;
}

.c-instructions li {
	position: relative;
	counter-increment: step 1;
	padding: 0 0 0 12px;
}

.c-instructions li::before {
	font-size: 14px;
	position: absolute;
	top: 0;
	left: 0;
	content: counter(step);
	width: 26px;
	height: 26px;
	background: rgb(145, 145, 145);
	color: #f0f0f0;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transform: translate(calc(-100%), 0);
}

.c-instructions li + li {
	margin-top: 30px;
}

.c-instructions p {
	margin: 0 0 10px;
	line-height: 1.2;
}

.c-instructions img {
	display: block;
	max-width: 100%;
}

.c-screenshot img {
	margin: 20px 0 0;
	display: block;
	max-width: 100%;
}
