/*
	https://www.joshwcomeau.com/css/custom-css-reset/
	https://cutcodedown.com/article/whats_wrong_with_YOUR_website_part4
	Avec quelques modifications
*/
@layer reset, theme, generic, special;
@layer reset {
	*, *::before, *::after {
		box-sizing: border-box;
		flex: 1 0 auto;
	}

	* {
		margin: 0;
		padding:0;
	}

	html, body {
		height: 100%;
	}

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

	img, picture, video, canvas, svg {
		display: block;
		max-inline-size: 100%;
		max-block-size: 100%;
	}

	img, fieldset {
		border: none;
	}

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

	hr {
		display: none;
	}

	p, h1, h2, h3, h4, h5, h6 {
		line-height: calc(1em + 0.5rem);
		overflow-wrap: break-word;
		hyphens: auto;
	}
}
