@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

*{
	margin: 0;
	padding 0;
	box-sizing: border-box;
	font-family: "DM sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}

body { 
	height: 100vh;
	background: #e0dbcb;
	padding: 0 2%;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
}

a {
	text-decoration: none;
}

.logo {
	font-weight: bold;
	font-size: 2em;
	color: #c47447;	
}

.menu ul {
	display:flex;
	gap: 40px;
	list-style: none;
	align-items: center;

}

.menu a {
	color: #333;
	transition: 0.5s;
}

.menu a:hover {
	color: #81522e;
}

.btn {
	padding: 8px 30px;
	font-size: 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	background-color: #c47447;
	color: #fff;
	transition: 0.5s;
}
.btn:hover{
	background-color: #af6d3b
}

.home {
	display: flex;
	align-items: center;
	text-align: center;
	flex-direction: column;
	margin: 20px 0;
}
.home p {
	font-size: 22px;
}

.images {
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;


}
.images img {
	width: 20%;
	height: 350px;
	object-fit: cover;
	border-radius: 10px;
	transition: 0.5s
}
.images img:hover {
	width: 30%;
	cursor: pointer;
}

.banniere {
	padding: 25% 25%; /* ajouter de l'espace dans notre element */
	background-image: url("../img/banniere_lpf.png");
	#background-attachment: fixed;
	background-size: cover;
	background-position: center;
	border-radius: 15px;
	#box-shadow: 6px 6px 0px rgb(0, 0, 0);
}

