/* A Modern CSS Reset */
*, *::before, *::after {
	box-sizing: border-box
}
ul, ol {
	padding: 0
}
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
	margin: 0;
	font-weight: 500;
}
html {
	scroll-behavior: smooth
}
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5
}
ul[class], ol[class], li {
	list-style: none
}
a:not([class]) {
	text-decoration-skip-ink: auto
}
img {
	max-width: 100%;
	display: block
}
article > * + * {
	margin-top: 1em
}
input, button, textarea, select {
	font: inherit
}
img:not([alt]) {
	filter: blur(10px)
}
em{
	font-style: normal
}
@media(prefers-reduced-motion:reduce) {
	* {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important
	}
}