/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: white;
}
a:hover {
  color: #f1c40f;
}

/* Header */



header nav {
  background-color: black;
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  align-items: center;
  padding: 1rem 2rem;
}

header nav h2 {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
}

header nav i {
  margin-right: 0.5rem;
  color: #f1c40f;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

header nav ul li {
  cursor: pointer;
  transition: color 0.3s;
}

header nav ul li:hover {
  color: #f1c40f;
}

/* Highlight color */
.style-j {
  color: #f1c40f;
  font-weight: 600;
}

/* Section: Sous-header */
.sous-header {
  background-color: #333;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.sous-header h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.sous-header p {
  max-width: 800px;
  min-width: 200px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

/* Section: Collection */
.collection {
  padding: 4rem 2rem;
  max-width: 1000px;
  min-width: 100px;
  margin: auto;
}

.collection h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.container {
  background: #fff;
  border: 1px solid #ccc;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.container-text h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #222;
}

.container-text p {
  white-space: pre-line;
  font-size: 1rem;
  color: #555;
}

.container-text p a {
  margin-left: 5rem;
  color: blue;
  text-decoration: underline;
}
.container-text p a:hover {
  color: #f1c40f;
}

.a-propos {
  background: #333;
  color: white;
  padding: 4rem 4rem;
  margin-bottom: 10rem;
}
.a-propos h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.a-propos p {
  text-align: center;
  line-height: 2rem;
}
.a-propos p a {
  color: rgb(109, 109, 210);
  text-decoration: underline;
}
.a-propos p a:hover {
  color: #f1c40f;
}

/*footer*/

.footer {
  background: black;
  color: white;
  text-align: center;
  padding: 2rem;
}
/*oder-lister*/
.oder-lister {
  display: flex;
  flex-flow: row nowrap;
}
