
body{
	background: #292929;
	font-family: sans-serif;
	margin: 0;
}

body, a{
	color: #FFF;
	text-align: center;
	font-size: 20px;
}

h1{
	font-size: 40px;
}

h2{
	margin: 16px;
}

h3{
	font-size: 20px;
	font-style: italic;
}


body .container:nth-child(2n){
	background: #dddbdb;
	color: #292929;
}

.container{
	padding: 56px;
}






.flex{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 32px;
}



.liste{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: left;
	gap: 200px;
}

.liste li{
	margin: 32px;
	list-style: none;
	position: relative;
}

.liste li:before{
	content: '';
	width: 42px;
	height: 42px;
	display: block;
	background: url('puce.svg');
	position: absolute;
	left: -50px;
}

.liste li i{
	display: block;
	font-size: 18px;
}


#developpeur{
	height: 400px;
}






.grid{
	padding: 0 148px;
}

.card{
	display: inline-block;
	overflow: hidden;
	width: 400px;
	height: 230px;
	margin: 16px;
}

.card img{
	transition: all .2s ease-in-out;
	width: 400px;
	height: 230px;
	object-fit: cover;
	object-position: top;
}

.card:hover img{
	transform: scale(1.2);
}





@media only screen and (max-width: 1000px){
	#developpeur{
		display: none;
	}
}


@media only screen and (max-width: 800px){
	.grid{
		padding: 8px;
	}
}

