:root {
	--border-color--light: #e8e3d8;
	--text-color: #39323c;
	--text-color--light: #5c5161;
	--link-color: #39323c;
	--link-color-hover: #c12f28;
	--subtitle-color: #5c5161;
	--border-marker: hsl(42 25% 96% / 1);
	--box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);

	--color-primary: #494559;
	--color-primary-30: hsl(252deg 13% 31% / 0.3);
	--color-primary--dark: hsl(252deg 13% 15% / 1);
	--color-brand-red: #c9312a;
	--color-light-blue: #dce5e7;
	--alert: #93db88;
	--alert-transparent: #93db88e8;
	--warning: #c70707;
	--success: #78c66c;
	--error: #fb5959;
	--continue: #329d3e;
	--white: #fff;
	--off-white: #fefefe;

	--background-color: #ebe7de;
	--bg--light: hsl(42 25% 88% / 1);
	--bg--medium: hsl(42 25% 84% / 1);

	--headline: 1.5rem;
	--gap: 1rem;
	--border-radius: 0.1875em;
	--row-highlight: #e8e4d9;

	--supreme:				"Supreme-Variable",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Segoe UI,Roboto,Oxygen,sans-serif;

	--h-large: 							550 1.25rem/1.25 var(--supreme);
	--h-medium: 						550 1.25rem/1.2 var(--supreme);
	--h-small: 							550 1.125rem/1.2 var(--supreme);

	--text-large-regular:		400 1.25rem/1.6 var(--supreme);
	--text-large-bold:			700 1.25rem/1.6 var(--supreme);

	--text-medium-regular:		400 1.125rem/1.6 var(--supreme);
	--text-medium-bold:				700 1.125rem/1.6 var(--supreme);

	--text-default-regular:	400 1rem/1.6 var(--supreme);
	--text-default-bold:		700 1rem/1.6 var(--supreme);

	--text-small-regular:		400 0.875rem/1.6 var(--supreme);	/* 14px */
	--text-small-bold:			700 0.875rem/1.6 var(--supreme);

	--text-mini-regular:		400 0.75rem/1.6 var(--supreme);			/* 12px */
	--text-mini-bold:				600 0.75rem/1.6 var(--supreme);

	--text-tiny-regular:		400 0.625rem/1.6 var(--supreme);			/* 10px */
	--text-tiny-bold:				700 0.625rem/1.6 var(--supreme);
}

@media(min-width: 37.5em) {
	:root {
		--h-large: 							550 1.25rem/1.2 var(--supreme);
		--h-medium: 						550 1.25rem/1.2 var(--supreme);		/* 40px */
		--h-small: 							550 1.75rem/1.2 var(--supreme);	/* 28px */

		--text-large-regular:		400 1.25rem/1.6 var(--supreme);
		--text-large-bold:			700 1.25rem/1.6 var(--supreme);

		--text-medium-regular:		400 1.125rem/1.6 var(--supreme);
		--text-medium-bold:				700 1.125rem/1.6 var(--supreme);

		--text-default-regular:	400 1rem/1.6 var(--supreme);
		--text-default-bold:		700 1rem/1.6 var(--supreme);

		--text-small-regular:		400 0.875rem/1.6 var(--supreme);	/* 14px */
		--text-small-bold:			700 0.875rem/1.6 var(--supreme);

		--text-mini-regular:		400 0.75rem/1.6 var(--supreme);			/* 12px */
		--text-mini-bold:				600 0.75rem/1.6 var(--supreme);

		--text-tiny-regular:		400 0.625rem/1.6 var(--supreme);			/* 10px */
		--text-tiny-bold:				700 0.625rem/1.6 var(--supreme);
	}
}

@font-face {
	font-family: 'Supreme-Variable';
	src: url('../fonts/Supreme-Variable.woff2') format('woff2');
		font-weight: 100 800;
		font-display: swap;
		font-style: normal;
}

html {
	font-family: 'Supreme-Variable', sans-serif;
	font-size: 1.125rem;
	line-height: 1.4;
	color: var(--text-color);
	background-color: var(--background-color);
}

body {
	margin: 0 auto;
}

/* If body has position style set by a11y dialog, add right property */
/* This seems to be a bug in iOS, and an implementation difference between Chrome and Safari in A11y Dialog */
body[style*="position"] {
	right: 0;
}

.section-default {
	margin: auto;
	padding: 0 1rem;
	max-width: 80rem;
}

.section-narrow {
	margin: auto;
	padding: 0 1rem;
	max-width: 40rem;
}

.section-wide {
	margin: auto;
	max-width: 70rem;
}

.section-full {
	margin: auto;
	max-width: 100%;
}

.box-container {
	margin-bottom: 1rem;
	border: 0.125rem solid var(--border-marker);
}

.box-container--padding {
	margin-bottom: 1rem;
	padding: 1rem;
	border: 0.125rem solid var(--border-marker);
}

.masthead {
	margin-top: -0.5rem;
	margin-bottom: 3rem;
}

.header {
	margin-top: 1.5rem;
	position: relative;
	display: grid;
	justify-content: space-between;
	font-weight: 600;
}

@media(min-width: 37.5em) {
	.header {
		grid-template-columns: 180px auto;
	}
}


.logo {
	margin-left: 0.5rem;
	display: flex;
	align-items: center;
	font-weight: 600;
	cursor: pointer;
}

.logo img {
	max-width: 180px;
}

.menu {
	display: flex;
	align-items: flex-end;
}

.menu ul {
	display: grid;
	grid-template-columns: auto auto auto auto;
}

@media(min-width: 37.5em) {
	.menu ul {
		grid-template-columns: auto auto auto auto;
	}
}

.menu a {
	padding: 1rem 0.5rem;
	display: block;
	color: var(--text-color);
}

@media(min-width: 37.5em) {
	.menu a {
		padding: 1rem;
	}
}

.menu a:hover {
	color: var(--link-color-hover);
}

.menu li.is-active a {
	color: var(--link-color-hover);
}

.menu a[aria-current] {
	text-decoration: underline;
}

a {
	color: var(--link-color);
	text-underline-offset: 4px;
}

a:hover,
a:focus {
	color: var(--link-color-hover);
	text-underline-offset: 4px;
}


.alert-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	font-weight: 600;
}

.alert-box > div {
	margin: 3rem 0;
	padding: 1rem 2rem;
	margin: auto;
	width: fit-content;
	max-width: 37.5rem;
	text-align: center;
	background-color: var(--alert-transparent);
	text-align: center;
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.user-notice {
	margin: auto;
	margin-bottom: 1rem;
	padding: 1rem 2rem 0.5rem;
	width: fit-content;
	text-align: center;
	border-radius: var(--border-radius);
	background-color: var(--off-white);
}

.verify-notice {
	padding: 0.25rem 0;
	text-align: center;
	background-color: #eba33b;
	border-bottom: 1px solid #00000024;
}

abbr {
	color: inherit;
	text-decoration: none;
}

:focus-visible {
	outline: 1px solid var(--color-primary);
	border-radius: var(--border-radius);
}

.padding-box {
	padding: 1rem;
}


.badge {
	/* margin-bottom: 0.5rem; */
	padding: 0.125em 0.75em;
	display: inline-block;
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: var(--border-radius);
	border: none;
	background-color: #000;
	text-decoration: none;
	transition: background-color 150ms ease-in-out;
}

.log-list {
	margin-left: 1rem;
}

.log-list li {
	margin-bottom: 1rem;
}

.info-box {
	margin-bottom: 1rem;
	padding: 1rem;
	border: 1px solid var(--border-marker);
	border-radius: var(--border-radius);
	background-color: var(--white);;
}

.footer {
	margin-top: 4rem;
}
