/* A Modern CSS Reset */

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
	margin:0;
	padding:0;
}

ul,
ol {
	list-style: none
}

li, dd {
	list-style-type: none;
}

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

html:focus-within {
	scroll-behavior: smooth
}

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.6
}

a {
	cursor: pointer;
	text-decoration: none;
}

a:not([class]) {
	text-decoration-skip-ink: auto
}

img,
picture {
	max-width: 100%;
	display: block;
	border: none;
}

input,
button,
textarea,
select {
	font: inherit
}

@media(prefers-reduced-motion:reduce) {
	html:focus-within {
		scroll-behavior: auto
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important
	}
}