/* Commentaire CSS */
header { 
	text-align: center;
	background : #1D1D1D;
	color: white;
 }

#logo {
  }



section {
	text-align: center;
}

body{
	font-family: 'roboto', arial, sans-serif;
	background : #F4F7F6;
}

h1 { 
	font-family: 'somecloud', arial, sans-serif; 
}


h2 {
	font-family: roboto, sans-serif;
	font-size: 1.5em;
	width: 400px;
	margin: auto;

}

h3:before {
		content: "« ";
		color:grey;
}


h3:after {
		content: " »";
		color:grey;
}

h3{
	font-size: 1.5em;
	text-transform: uppercase;
}

a {
	text-decoration: none;
	color: black;
}

a:focus {
	color: red;
}


ul {
	padding: 0;
	display: inline;
	margin: 10px;
}

li{
	list-style-type: none;
	display: inline;
	margin: 10px;
}

li:hover{
	font-weight: bold;
}

nav{
	text-align: center;
	background: white;
	-webkit-box-shadow: 0 3px 1px -1px rgba(0,0,0,0.5);
	box-shadow: 0 3px 1px -1px rgba(0,0,0,0.5);
	font-size: 1.1em;
	padding: 15px;
}

footer{
	background-color: #1D1D1D;
	color: white;
	text-align: center;
	padding: 15px;
}

* {
	box-sizing: border-box;
}

/* ID */

#contact {
	border: 1px black solid;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 50px;
}


#projets {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


/* CLASSES */

.separator {
	width: 40px;
	height: 1px;
	margin: 15px auto;
	display: block; 
	background-color: #999999;
}

.contener {
	width: 90%;
	margin: auto;
}

.projets {
	width: 400px;
	margin: 20px;
	display: inline-block;
	background: white;
	padding-bottom: 15px;
	border: 0px black solid;
	border-radius: 10px;
	overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.projets:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  transition: 0.6s;
}

.projets img {
	height: 266px;
}

.projets .date-project {
	font-style: 0.7em;
}

.projets span{
	text-transform: uppercase;
	display: block;
}

.picture {
	width: 400px;
	height: 266px;
	overflow: hidden;
	margin-bottom: 15px;

}

/* POLICES à télécharger sur dafont.com*/
@font-face {
	font-family: 'somecloud' ;
	src: url('../src/somethinginthecloud.ttf') format('truetype');
}