*{ box-sizing: border-box; } /* Pour que les dimensions prennent en compte les padding et border, etc... */
img /* Pour ne pas que les images sortent de leurs blocs */
{
	max-width: 100%;
	height: auto;
	
}
html, body
{
	--header_bg: #FF0650;
	font-family: Roboto;
	font-size: 16px;
	line-height: 1.4;
	height: 100%;
	background-color: var(--header_bg);
	margin: 0;
	padding: 0;
	
}
a
{
	text-decoration: none;
	color: inherit;
}
.container
{
	overflow: hidden;
	margin: 0 20px;
}
.site-content
{
	padding-top: 66px;
}
.header
{
	position: fixed; /* pour coller en haut de l'écran */
	left: 0;
	right: 0;
	height: 66px;
	
	line-height: 66px;
	color: #FFF;
	
	background-color: #2e7d32;
}

.header__logo
{
	float: left;
	padding: 0 25px;
	height: 100%;
}

.menu
{
	float: left;
	/*padding: 0 25px;*/
}
.menu a
{
	padding: 0 15px;
}
.menu a:hover
{
	color: #c6ff00;
}




