html body {
  margin: 0;
}
html body .page {
  background-color: gray;
}
html body .page #bandeau {
  margin-top: 10vh;
  padding: 3px;
  height: 200px;
  background-color: beige;
  display: flex;
  position: relative;
  justify-content: flex-end;
}
html body .page #bandeau .divbouton {
  height: 100%;
  min-width: 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body .page #bandeau .divbouton button {
  width: 40%;
  height: 30%;
}
html body .page #bandeau #slider {
  background-color: aquamarine;
  overflow-x: hidden;
}
html body .page #bandeau #slider .piste {
  align-items: center;
  height: 100%;
  display: flex;
  justify-content: space-around;
}
html body .page #bandeau #slider .piste .slide {
  display: flex;
  justify-content: space-around;
  min-width: 90vw;
}
html body .page #bandeau #slider .piste .slide .carre {
  width: 100px;
  height: 100px;
  background-color: red;
}
@media only screen and (max-width: 800px) {
  html body .page #bandeau #slider .piste .slide .carre {
    width: 75px;
    height: 75px;
  }
}
html body .page #dot_bandeau {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: beige;
}
html body .page #dot_bandeau #dot_box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 5%;
  padding: 3px;
}
html body .page #dot_bandeau #dot_box .dot {
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
  background-color: gray;
}
@media only screen and (max-width: 800px) {
  html body .page #dot_bandeau #dot_box {
    width: 20%;
  }
}

/*# sourceMappingURL=main.css.map */
