/*===============================================*\
	Reset
\*===============================================*/

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	border: 0;
	margin: 0;
	padding: 0;
}

html,
body {
	min-height: 100vh;
	width: 100%;
}

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

body {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

img, picture, video,
canvas, svg {
	display: block;
	max-width: 100%;
}

ol,
ul,
li {
	list-style: none;
}

input, button,
textarea, select {
	font: inherit;
}

p, h1, h2, h3,
h4, h5, h6 {
	overflow-wrap: break-word;
}

:target {
	scroll-margin-block: 5ex;
}