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

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	scroll-behavior: smooth;
	height: 100.1%; 
}

:where(*) {
	margin: 0;
	padding: 0;
	border: 0;
}

:where(ul, ol) { list-style: none; }

body {
	min-height: 100vh;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

:where(img, picture, video, canvas, svg) {
	display: block;
	max-width: 100%;
	height: auto;
}

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

/* Modern Form Reset */
:where(input, button, textarea, select) {
	font: inherit;
	color: inherit;
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
}

:where(button, [type="button"], [type="submit"]) {
	cursor: pointer;
	white-space: nowrap;
	user-select: none;
}

:where(button, [type="button"], [type="submit"]):disabled {
	cursor: not-allowed;
}

:where(input:not([type="checkbox"]):not([type="radio"]), textarea) {
	width: 100%;
}

:where(textarea) {
	resize: vertical;
	display: block;
}

:where(input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration) {
	display: none;
}

:focus { outline: none; }
:focus-visible { outline: none; }

::placeholder { color: currentColor; opacity: 0.5; }