body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
}

header {
	background-color: #332f5f;
	color: #fff;
	padding: 10px;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: right;
}

nav li {
	margin: 0 10px;
    font-weight:bold ;
    font-size: 1,5 em;
}

nav a {
	color: #fff;
	text-decoration: none;
}

main {
	padding: 20px;
}

article {
	margin-bottom: 30px;
}

h2 {
	margin-top: 0;
}

footer {
	background-color: #333;
	color: #fff;
	padding: 10px;
	text-align: center;
}



.carousel {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.slides {
	display: flex;
	width: 100%;
	height: 400px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

.slide {
	flex: 0 0 100%;
	height: 100%;
	scroll-snap-align: center;
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.prev,
.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	padding: 16px;
	background-color: rgba(0, 0, 0, 0.3);
}

.next {
	right: 0;
}

.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

