/*	-	-	-	-	-	-	-	-	-	-	*/
/* Style visuel global pour le projet */


/* Import */
@import url('https://rsms.me/inter/inter.css');




/* Reset */
* { box-sizing: border-box; margin:0; }
img { max-width: 100%; display: block; object-fit: cover; }




/* Typo */

body { font-family: InterVariable, sans-serif; }

h3{
	font-size: 2rem;
	line-height: 100%;
	font-weight: 200;
}




/* Couleur */

html {
	color: #333;
	background-color: #F6F6F6;
}




/* Géometrie & Mise en page */

body{
	padding: 1rem;
}

/* Navigation */
#siteNav{
	position: fixed;
	top: 0;
	right: 0;
	background: red;
	color: #F6F6F6;
	padding: 1rem;
}
#siteNav a:first-child::before {
	content: "⇉";
}
 #siteNav a:last-child::after {
	content: "⇇";
}
#siteNav a {
	color: inherit;
	text-decoration: none;
}

#siteNav a:hover{
	text-decoration: underline overline dotted;	
}