
body {
font-family: 'Nunito Sans', sans-serif;
background: #F4F7F6;
margin: 0;
}

h1 {
 margin-top: 0;
 font-family: Rochester, sans-serif;
 padding: 20px;

}

h2 {
	width: 400px;
/*Pour centrer	*/
	margin: auto;
}
h3:before {
	content: "<< ";
	color: grey;
	font-family: 'Nanum Pen Script', cursive;
}

h3:after {
	content: " >>";
	font-family: 'Nanum Pen Script', cursive;
	color: grey;
}
h3 {
	font-size: 1.5em;
	text-transform: uppercase;
}

a {
	text-decoration: none;
	color: black;
}

a:hover {
	font-weight: bold;
}

ul {
	padding: 0;
	display: inline;
}
li {
	list-style-type: none;
	display: inline;
	margin: 10px;
}
header {
	text-align: center;
	background-color: #1D1D1D;
	color: whitesmoke;
	padding-bottom: 5px;
}
nav {
 	text-align: center;
 	background-color: white;
 	box-shadow: 0px 3px 1px -1px rgba(0, 0, 0, 0.5);
 	font-weight: 1.1em;
 	padding: 15px;
}

section {
text-align: center;
}
#contact {
	border: 1px solid black;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 50px;
}
footer {
	background-color: #1D1D1D;
	color: whitesmoke;
	border: 2px solid silver;
	text-align: center;
	padding: 15px;
}

span {
	text-transform: uppercase;
	display: block;
}

* {
	box-sizing: border-box;
}

/*ID*/

#logo {
	margin-top: 30px;
	 width: 100px;
}

#projets {
	display: flex;
	flex-wrap: wrap;
}

#production img {
	width: 60%;
    border-radius: 20px;
}

#production img:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	transition: 0.6s;
}


/*CLASSES*/

.separator {
	width: 40px;
	height: 1px;
	margin: 15px auto;
	display: block;
	background-color: #999999;
}

.conteneur {
	width: 80%;
	margin: auto;
}

.projet {
	width: 400px;
	margin: 30px;
	display: inline-block;
	background-color: white;
	padding-bottom: 15px;
	border: 0px solid black;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.projet img{
	min-width: 400px;
	height: 266px;
}
.projet:hover {
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	transition: 0.6s;
}
.picture  {
	width: 400px;
	height: 266px;
	overflow: hidden;
	margin-bottom: 15px;
}

.date-projet {
	font-size: 0.7em;
}

/*MEDIA*/
@media all and (max-width: 1000px) {
	.projet { width: 100%; margin: 15px auto;}
	.projet img { width:100%; min-width: auto; height: auto;}
	.projet .picture { width:100%; width: auto; }
	header h2 {width: 90%;}
}