body {
    margin: 0px;
    background-color: #000000;
}
header {
    display: flex;
    align-items: center;
    z-index: 5;
    
}
#headerRouge {
    display: flex;
    height: 100px;
    background:#8d0101;
    z-index: 5;
    
}
#WIN {
    margin-top: 0px;
    position: absolute;
    margin-left: 75px;
}
/* menu burger */
.off-screen-menu > ul > li {
    list-style-type: none;
}
.off-screen-menu {
    background-color: rgb(34, 37, 49);
    height: 100vh;
    width: 100%;
    max-width: 400px;
    position: fixed;
    top: 0;
    left: -450px;
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    transition: .3s ease;
    z-index: 1;
}
ul {
    margin-top: 100px;
  }
  .ham-menu.active {
    position: fixed;
    z-index: 5;
    margin-top: -25px;
  }
.off-screen-menu.active {
    left: 0;
}
nav {
   padding: 1rem;
   display: flex;
}
.ham-menu {
    height: 50px;
    width: 50px;
    margin-right: auto;
    position: relative;
}
.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: black;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    right: -50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    z-index: 5;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
button {
    padding: 20px 50px;
    font-size: 1.5rem;
    cursor: pointer;
    border: 0;
    color: #fff;
    background: transparent;
    position: relative;
    margin: 20px;
    transition: all .25s;
  }
  button::after,button::before {
    border: 3px solid #fff;
    content: '';
    position: absolute;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    transition: all .25s;
  }
  button:hover::after {
    transform: translate(-5px, -5px);
  }
  
  button:hover::before {
    transform: translate(5px, 5px);
  }
/* fin menu burger */
.nosJeux{
    text-align: center;
    color: white;
    font-family: Verdana, Tahoma, sans-serif;
    margin-top: 75px;
    font-size: 30px;
    
}
.intro {
    color: white;
    display: flex;
    justify-content: center;
}
.introImg {
  border-radius: 50%;
  margin: 30px;
}
.introTitre {
    font-size: 30px;
}
.introText {
    font-size: 23px;
    max-width: 750px;
}
.introBody {
  display: flex;
  flex-direction: column;
}  
.chrono1 {
  display: flex;
  font-family: Helvetica, sans-serif;
  align-items: center;
  justify-content: left;
  margin-left: 75px;
}
.chrono1Img {
  border-radius: 5%;
}
.chrono1Body {
  color: #ffffff;
  margin: 50px;
  display: flex;
  flex-direction: column;
}
.chrono1Titre {
  font-size: 25px;
}
.chrono1Text {
  font-size: 20px;
  max-width: 600px;
}
.chrono2 {
  display: flex;
  font-family: Helvetica, sans-serif;
  align-items: center;
  margin-right: 50px;
  background-color: antiquewhite;
  border-radius: 5%;
  width: 60%;
  margin-left: auto;
}
.chrono2Img {
  border-radius: 5%;
}
.chrono2Body {
  color: #000000;
  margin: 50px;
  display: flex;
  flex-direction: column;
}
.chrono2Titre {
  font-size: 25px;
}
.chrono2Text {
  font-size: 20px;
  max-width: 600px;
}
hr {
  height: 2px;
  background-color: rgb(255, 255, 255);
  border: rgb(255, 255, 255);
} 
.pay {
  display: flex;
  justify-content: space-evenly;
}
.disclamer {
  background-color: red;
  text-align: center;
  color: #000000;
  font-family: Helvetica, sans-serif;
  margin: auto;
  width: fit-content;
}
.droit {
  color: white;
  text-align: center;
  font-size: 10px;
}
@media screen and (max-width: 600px) {
  .intro {
    color: white;
    display: flex;
    max-width: 300px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .nosJeux h1 {
  font-size: 30px;
  }
  .chrono1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 20px;
  }
  .chrono2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    text-align: center;
    justify-content: center;
    width: 90%;
    margin: auto;
  }
  .pay {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .pay img {
    margin: 20px;
  }
  img {
    max-width: 300px;
  }
} 
