/* Box sizing rules */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
	list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
	text-decoration-skip-ink: auto;
}

/* Make audio, canvas, iframe, video, img, svg easier to work with */
audio,
canvas,
iframe,
video,
img,
svg {
	max-width: 100%;
	display: block;
}

/* Natural flow and rhythm in articles by default */
article>*+* {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	* {
		-webkit-animation-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		-webkit-transition-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/*******************/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

:focus {
	outline: 0;
}

iframe {
	border: 0;
}

textarea {
	resize: none;
	/*remove the resize handle on the bottom right*/
	overflow: auto;
	vertical-align: top;
	-webkit-box-shadow: none;
	box-shadow: none;
}

input,
textarea,
select,
button {
	outline: none;
	border: none;
	font-size: 100%;
	margin: 0;
}

button,
input {
	line-height: normal;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
	text-align: left;
}

/*# sourceMappingURL=reset.css.map */