/* Foglight — reset.css
   A modern, minimal reset. Opinionated defaults only; no visual styling. */

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

* {
	margin: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

html,
body {
	height: 100%;
}

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

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

/* Casual-download deterrents (paired with assets/js/image-protect.js):
   block drag-to-desktop saving, iOS's long-press "Save Image" callout,
   and text-selection/copy on the image itself. Screenshots and viewing
   the page source always bypass this — see image-protect.js for why
   that's true of any site, not a gap specific to this one. */
img,
video {
	-webkit-user-drag: none;
	-webkit-touch-callout: none;
	user-select: none;
}

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

button {
	background: none;
	border: 0;
	cursor: pointer;
	text-align: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

ul,
ol {
	list-style: none;
	padding: 0;
}

table {
	border-collapse: collapse;
	width: 100%;
}

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

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
