body {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  background: linear-gradient(rgb(1, 15, 52), rgb(32, 63, 136));
  margin: 0;
  line-height: 1.6;
}


h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  text-align: center;
}



h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}

.reseaux{
  display: flex;
  gap: 20px;
  width: max-content;
  margin-inline: auto;
}

.reseaux img{
  width: 75px;
}

.discord-texte{
  padding-left: 0;
}

.mail-pro{
  width: max-content;
  margin-inline: auto;
}
.carousel-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background-color: #fff;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel img {
min-width: 100%;

  display: none;

}

.carousel img.active {
  display: block;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

button.prev:hover,
button.next:hover {
  background-color: rgba(0,0,0,0.7);
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}
