h1{
  font-size: 2rem;
  text-align: center;
}

.bouton{
    animation: flicker 2.5s infinite alternate;
    color: white;
    text-align: center;
    min-width: 200px;
    max-width: 700px;
    height: 100px;
    font-size: 4em;
    padding: 0 15px 0 15px;
  }
  
  .produit{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    padding: 0 30px 0 30px;
}

.btns-slider{
  font-size: 1.8em;
  text-align: center;
}

span:hover{
  cursor: pointer;
}

.slider{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: 0;
}

.gauche{
  display: flex;
  flex-flow: column nowrap;
  width: 60%;
}

img{
  width: 70%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.transition{
  animation: noise-anim 0.5s alternate-reverse;
}

.droite{
  display: flex;
  flex-flow: column nowrap;
  margin-top: 5em;
  width: 40%;
  align-items: center;
}

.specs{
  border: solid 2px white;
  padding: 0;
  margin-bottom: 20px;
}

p{
  padding: 10px;
}

.specs p:nth-child(2n+1){
  background-color: rgb(66, 66, 66);
}

.specs p:last-child{
  margin-bottom: 0;
}

.description{
  margin-top: 0;
  font-size: 1.5em;
}

  .bouton:hover{
    cursor: pointer;
  }
  @keyframes flicker {
      0%,19%,21%,23%,25%,54%,56%,to {
          text-shadow: -.2rem -.2rem 1rem #fff,.2rem .2rem 1rem #fff,0 0 2rem #0016ee,0 0 4rem #0016ee,0 0 6rem #0016ee,0 0 8rem #0016ee,0 0 10rem #0016ee;
          box-shadow: 0 0 .5rem #fff,inset 0 0 .5rem #fff,0 0 2rem #fe00fe,inset 0 0 2rem #fe00fe,0 0 4rem #fe00fe,inset 0 0 4rem #fe00fe
      }
  
      20%,24%,55% {
          text-shadow: none;
          box-shadow: none
      }
  }