@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #282828;
  --secondary-color: #dbc4ff;
  --tertiary-color: #b995f5;
  --fourth-color: #3e3e3e;
  --border-color: white;
  --text-color: #282828;
  --text-color-2: white;
  --hr-color: #2596be;
}
html {
  box-shadow: inset 0 0 50px #b995f5;
  width: 100%;
  scrollbar-width: thin;
}
body {
  background-color: var(--primary-color);
  margin: 0;
  overflow-x: hidden;
}
main {
  margin: 0 5lvw;
}
nav {
  overflow-x: auto;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  background-color: var(--secondary-color);
  width: 100%;
  padding: 30px;
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: solid 5px var(--border-color);
}
nav a {
  scroll-snap-align: center;
  flex-shrink: 0;
  display: inline-block;
  color: var(--text-color);
  text-decoration: none;
  margin-right: 10px;
}
nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--text-color);
  transition: 0.2s ease-in-out;
}
nav a:hover::after {
  width: 100%;
}
header > img {
  width: 100%;
  height: auto;
  margin-top: 80px;
  box-shadow: 0 10px 50px #b995f5;
}
section {
  margin-top: 150px;
}
section h2 {
  color: var(--text-color-2);
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}
section h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text-color-2);
}
p {
  font-family: "Roboto", sans-serif;
}
ul {
  font-family: "Roboto", sans-serif;
  list-style: none;
}

footer {
  box-shadow: 0 -10px 50px #b995f5;
  background-color: var(--secondary-color);
  color: var(--text-color);
  font-family: "Roboto", sans-serif;
  position: relative;
  bottom: 0;
  font-size: 1.2rem;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
footer ul li {
  color: var(--text-color);
}
footer ul li a {
  color: var(--text-color);
  text-decoration: none;
}
footer ul li a:hover {
  color: var(--text-color-2);
  text-decoration: underline;
}
footer .titre {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 20px 0;
}
.container-footer {
  border-top: solid 5px var(--border-color);
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px 0;
}
.description-brève {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 33.33%;
  min-width: 200px;
}
.description-brève p {
  text-align: justify;
}

.footer-text {
  font-size: 1.2rem;
  text-align: center;
  border-top: solid 5px var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
}