@font-face {
	font-family: Ketchum;
	src: url(./../assets/font/ketchum/Ketchum.otf);
}
:root {
	--color-primary: #181818;
	--color-secondary: #f0f0f0;
	--focus:#df90ff;
	--font-primary: system-ui, sans-serif;
}
html.dark {
	--color-primary: #f0f0f0;
	--color-secondary: #181818;
}
@media (prefers-color-scheme: dark) {
	:root {
		--color-primary: #f0f0f0;
		--color-secondary: #181818;
	}
	html.light {
		--color-primary: #181818;
		--color-secondary: #f0f0f0;
	}
}
@media (prefers-contrast: high) {
	:root {
		--color-primary: #000;
		--color-secondary: #fff;
	}
}
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none;
		transition: none;
	}
}
::selection {
	background-color: var(--color-primary);
	color: var(--color-secondary);
}
*,
*::after,
*::before {
	box-sizing: border-box;
}
* {
	vertical-align: baseline;
}
html {
	scroll-behavior: smooth;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
body {
	width: 100%;
	min-height: 100vh;
	margin: 0;
	font-size: 100%;
	font-family: var(--font-primary);
	color: var(--color-primary);
	background-color: var(--color-secondary);
	font-smooth: always;
	-webkit-font-smoothing: antialiased;
	-mox-osx-font-smoothing: grayscale;
}
img {
	border-style: none;
}
img,
picture,
video,
frame,
figure {
	max-width: 100%;
	width: 100%;
	display: block;
}
a {
	display: block;
	background-color: transparent;
}
a:focus {
	color: var(--focus);
}
p a {
	display: inline;
}
li {
	list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
blockquote,
i,
u,
em {
	font-style: inherit;
	text-decoration: none;
	color: inherit;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
	content: none;
}
form,
input,
textarea,
select,
button,
label,
optgroup {
	font-family: inherit;
	font-size: inherit;
	hyphens: auto;
	background-color: transparent;
	display: block;
	color: inherit;
	line-height: 1.15;
	margin: 0;
}
label input {
	display: inline;
}
button {
	cursor: pointer;
}
button,
input {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
	outline: 1px dotted ButtonText;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

table,
tr,
td {
	border-collapse: collapse;
	border-spacing: 0;
}
svg {
	width: 100%;
	display: block;
	fill: currentColor;
}
main {
	display: block;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}
b,
strong {
	font-weight: bolder;
}
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}
progress {
	vertical-align: baseline;
}
textarea {
	overflow: auto;
}
[type='checkbox'],
[type='radio'] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}
[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}
[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}
details {
	display: block;
}

summary {
	display: list-item;
	list-style: none;
	cursor: pointer;
}

template {
	display: none;
}
[hidden] {
	display: none;
}
