html {
	background: url(images/mouvement.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

body {
	max-width: 45em;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
	margin: 6em auto;
	background-color:rgba(77, 77, 77, 0.8);
	color: #e6e6e6;
}

.container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	height: auto;
	border-style: solid;
    border-width: 1px;
	border-color: #e6e6e6;
}

/* We tell all items to be 100% width, via flex-basis */
.container > * {
	flex: 1 100%;
    
}

header h1,h2,h3{
	text-align:center;
}

h1 {
	text-shadow: 2px 2px 4px black;
}

/*-----------MENU------------*/

nav ul {
    list-style:none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
}

nav a{
    /*background: #404040;*/
    margin-right: 40px;
	margin-bottom: 20px;
    text-align:center;
    text-decoration: none;
	color: gold;
	padding: 2px 4px;
}

nav a:hover {
	color: white;
}


/* Style the links */
#gold a {
	font-style: italic;
	color: gold;
	font-size:0.85em;
}

#gold a:hover {
	color: white;
}

a {
	font-weight: bold;
	text-decoration: none;
}

section {
	margin-top: 2em;
    display: flex;
	justify-content: space-around;
}

img {
	width: 11.25em;
	height: 7.5em;
}

.carte a{
	background-color: gold;
}

.carte a:hover{
	background-color: white;
}

.adresse {
	text-align: center;
	margin-left: -12em;	
}

footer {
	display: flex;
	justify-content: center;
	margin-top: 3em;
	margin-bottom: 2em;
}

@media screen and (max-width: 600px) {
	
body {
	margin-top: 1em;
	}
	
nav ul {
	flex-direction: column;
	}
	
nav ul  li{
	margin-bottom: 6px;
	}
	
section {
	margin-top: 0.5em;
	}
	
img {
    max-width: 80%;
	}
	
.adresse {
	margin-left: 2px;
	}
	
footer {
	font-size: 80%;
	}
}











