//* Style des Produits */
body {
  font-family: Arial, sans-serif;
  margin:  0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: #333;
  color: white;
  padding: 10px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  }

nav .logo a {
  color: white;
  text-decoration: none;
  font-size: 75px;
  font-weight: bold;
}

nav .nav-links {
  list-style: none;
  display: flex;
}

nav .nav-links li {
  margin: 0 15px;
}

nav .nav-links a {
  color: white;
  text-decoration: none;
   font-size: 24px;
  font-weight: bold;
}
nav .nav-links {
  list-style: none;
  display: flex;
}

nav .nav-links li {
  margin: 0 15px;
}

nav .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}
nav .nav-links a:hover {
  text-decoration: underline;
}

.products {
  text-align: center;
  padding: 20px 20px;
  background-color: #f4f4f4;
}

.products h2 {
  margin-bottom: 80px;
}

.product-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.product {
  background-color: white;
  border-radius: 100px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
  width: 250px;
  margin: 10px;
  padding: 20px;
  text-align: center;
}
.product img {
  width: 70%;
  border-radius: 20px;
}

.product h3 {
  font-size: 30px;
  margin: 05px 0;
}

.product p {
  font-size: 25px;
  color: #333;
}

.product button {
  background-color: #FF0000;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 10px;
}
product button:hover {
  background-color: #555;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 50px;
}

