/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* 2. Remove default margins and padding from everything */
* {
	margin: 0;
	padding: 0;
}

/* 3. Allow percentage-based heights in the application */
html,
body {
	height: 100%;
}

/* 4. Improve media defaults and remove borders */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

/* 5. Remove built-in form typography inheritance quirks */
input,
button,
textarea,
select {
	font: inherit;
}

/* 6. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

/* 7. Remove list styles (bullet points) */
ol,
ul {
	list-style: none;
}

/* 8. Remove default link styling */
a {
	text-decoration: none;
	color: inherit;
}
