body {
  background-color: #2E3940;
}

body.dark-theme {
  background: #102a7eec;
}



/*  HEADER*/
header {
  align-content: space-between;
  text-decoration: none;
  color: black;
  padding: 1%;
}

a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}


/* Style pour le rectangle contenant les boutons */
.rectangle {
  width: 96%;
  max-width: 1470px;
  height: 15vw;
  max-height: 191px;
  border-radius: 25px;
  background-color: #f97c0eec;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 2vw;
  margin-top: 1%;
}
.dark-theme.rectangle {
  background-color: #2E3940;

}


/* Style pour les boutons */
.button {
  width: 111px;
  height: 42px;
  background-color: #2E3940;
  border: none;
}

/* Style pour les boutons actifs */
.button.active {
  width: 177px;
  height: 67px;
  border-radius: 50px;
  text-decoration: none;
}

/* Style pour les textes des boutons */
.button span {
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
}

/* Style pour les textes des boutons actifs */
.button.active span {
  font-size: 18px;
  font-weight: bold;
}

/* Style pour le survol des boutons */
.button:hover {
  transform: scale(1.1);
}

/* Style pour le clic des boutons */
.button:active {
  transform: scale(0.9);
}

h1,
h2 {
  margin-left: 2.5%;
  width: fit-content;
  height: 67px;
  border-radius: 50px;
  background-color: #f97c0eec;
  display: flex;
  align-items: center;
  padding: 10px;
}

.profile {
  justify-content: left;
}

/* Index*/
.rectanglepresentation {
  width: 85%;
  height: 30%;
  border-radius: 25px;
  background-color: #ccc;
  display: flex;
  align-items: center;
  margin: auto;
  gap: 50px;
}

.rectanglepresentation p {
  text-align: center;
  text-decoration: solid;
  margin-inline: 5%;
  font-size: 2vw;
}

.imageplatforme div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.imageplatforme div img {
  max-width: 50vw;
  height: auto;
  margin: 2%;
  box-shadow: 10px 5px 5px black;
}

.video {
  display: flex;
  justify-content: center;
  margin: 8%;
}

.video iframe {
  max-width: 100%;
}

.carousel-container {
  width: 1500px;
  overflow: hidden;
  position: relative;
}

#slider{
  display: flex;
  flex-direction: row;
  transition: transform 300ms ease-in-out;
  white-space: nowrap;
}

.carousel-container img {
  flex-shrink: 0;
  width: 350px;
  height: 197px;
  margin: 10px;
  transition: transform 0.2s;
}
.carousel-container img:hover {
    transform: scale(1.2);
  }
.carousel-container button {
  width: 111px;
  height: 42px;
  background-color: #f97c0eec;
  border-radius: 15%;
  border: none;
}

#suivant,
#retour {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(192, 117, 14, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

#retour {
  left: 0;
}

#suivant {
  right: 0;
}

/* saison*/

.imagesaison div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.imagesaison div img {
  max-width: 50vw;
  height: auto;
  margin: 2%
}

/* Quiz et les heros*/

.quiz,
.herochoix {
  font-size: x-large;
  color: white;
}

.role a {
  font-size: 50px;
  background-color: #f97c0eec;
  border-radius: 25px;
  padding: 10px;
}
.role li{
  padding: 2%;
}

.avis{
  color: white;
}
.butavis,.buthaut{
  background-color: #f97c0eec;
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.butmode{
  background-color: #2E3940;
  font-size: 20px;
  display: flex;
  justify-content: center;
  color: white;
}
