/* page créée par Gaetan Bourgeois / 16-janvier-2024 */
/* début slide */
.imgslides {
    max-width: 100%;
    margin: auto;
    position: relative;
  }
  
  .slides {
    display: none;
  }
  .prev,
.next {
  cursor: pointer;
  color: white;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  padding: 16px;
  border-radius: 0 3px 3px 0;
  background: rgba(0, 0, 0, .5);
  transition: all .3s;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev:hover,
  .next:hover {
    background: rgba(0, 0, 0, .8);
  }
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    margin: 10px 2px 0 2px;
    display: inline-block;
    background: #ddd;
    transition: all .3s;
  }
  
  .dotActive,
  .dot:hover {
    background: #ff9900;
  }
  /* fin slide */
  .jeux {
  display: flex;
}
.carteJeu {
  display: flex;
  width: 400px;
  margin: 100px auto;
  background-color: white;
  box-shadow: 4px 5px 28px 5px #ffffff;
  border-radius: 2% 2% 2% 2%;
}
.carteJeu a {
  color: #333;
  text-decoration: none;
}
.carteJeu:hover .carteImg img {
  width: 160%;
  filter: grayscale(0);
}
.carteImg {
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 2% 2% 0 0;
}
.carteImg img {
  width: 150%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: grayscale(1);
  transition-property: filter width; 
  transition-duration: .3s;
  transition-timing-function: ease;
}
.carteCorps {
  text-align:center;  
  padding: 15px 20px; 
  box-sizing: border-box; 
}
.carterCat {
  font-family: 'Source Sans Pro', sans-serif;
}

.carteTitre, .carteTxt {
   font-family: 'Playfair Display', serif;
}

.carterCat, .carteTitre {
  text-align:center;
  text-transform:uppercase;
  font-weight: bold;
}

.carterCat, .carteTxt {
  color: #777;
}
hr {
  height: 2px;
  background-color: rgb(255, 255, 255);
  border: rgb(255, 255, 255);
} 
.autreAll {
  display: flex;
  margin: 80px;
  align-items: center;
  justify-content: center;
  
}
.autreImg {
  display: flex;

}
.autreTitre {
  color: #ffffff;
  margin: 20px;
  align-items: baseline;
  max-width: 900px;
}
.lienAutre {
  margin-right: 200px;
}
.pay {
  display: flex;
  justify-content: space-evenly;
}
@media screen and (max-width: 1200px) {
  .jeux {
    display: flex;
    flex-direction: column;
  }
  .autreAll {
    flex-direction: column;
  }
  .autreTitre {
    margin: auto;
    text-align: center;
  }
  .lienAutre {
    margin: auto;
  }
  .pay {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .pay img {
    margin: 20px;
  }
  .autreTitre {
    align-items: center;
  }
} 
