@charset "utf-8";
/*-------------------------------------------- RESET CSS */
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, img, ins, kbd, q, s, samp,
small, b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, embed, menu, nav {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit; 
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*------------------------------------------- GENERALITES */
* {
    box-sizing: border-box;
}
body, html {
    height: 100%;
    width: 100%;
}
html {	
	font-size: 62.5%;
	font-weight: 400;
}
body {
	font-size: 14px;
	overflow-x: hidden;
    background-color: #5c2375;
	/*
	*/
}
.background_salon {
	object-fit: cover;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-image: url("/erreur-404.png");
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover;	
	z-index: 1;
	transition: filter .6s;
}	