/* base/reset.css
   Element defaults.

   Part of assets/css/. The load order lives in
   inc/setup.php - add new files there, not with @import. */

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

html,
body {
	margin: 0;
	padding: 0;
	background: #fff;
}

body {
	font-family: Poppins, Helvetica, Arial, sans-serif;
	color: var(--ink);
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--navy);
	text-decoration: none;
}

a:hover {
	color: var(--blue);
}

button {
	font-family: inherit;
}

p {
	margin: 0;
}
