/**
 * NH Makelaar — Base styles
 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Rubik', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	font-size: 1.5rem;
	line-height: 1.5;
	color: #1a1a1a;
	background-color: #fff;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--nh-color-primary);
	text-decoration: none;
	transition: color var(--nh-transition-fast);
}

a:hover,
a:focus {
	color: var(--nh-color-primary-dark);
	text-decoration: underline;
}

a:focus-visible {
	outline: 2px solid var(--nh-color-primary);
	outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--nh-font-heading);
	font-weight: var(--nh-font-weight-bold);
	line-height: var(--nh-line-height-tight);
	margin: 0 0 var(--nh-space-4);
	color: var(--nh-color-text);
}

h1 { font-size: var(--nh-font-size-2xl); }
h2 { font-size: var(--nh-font-size-xl); }
h3 { font-size: var(--nh-font-size-lg); }
h4 { font-size: var(--nh-font-size-md); }
h5, h6 { font-size: var(--nh-font-size-base); }

p {
	margin: 0 0 var(--nh-space-4);
}

ul, ol {
	margin: 0 0 var(--nh-space-4);
	padding-left: var(--nh-space-6);
}

li {
	margin-bottom: var(--nh-space-2);
}

svg {
	fill: currentColor;
}
