/* page créée par Gaetan Bourgeois / 13-mars-2024 */
body {
    margin: 0px;
    background-color: #000000;
    font-family: Helvetica, sans-serif;
}
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: 5;
}
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: 50px;
  font-size: 30px;
}
.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;
  }
  .pay {
    display: flex;
    justify-content: space-evenly;
  }
  @media screen and (max-width: 1200px) {
    .pay {
      display: flex;
      align-items: center;
      flex-direction: column;
    }
  } 
  @media screen and (max-height: 600px) {
    button {
      padding: 10px 25px;
      font-size: 0.75rem;
      cursor: pointer;
      border: 0;
      color: #fff;
      background: transparent;
      position: relative;
      margin: 10px;
      transition: all .25s;
    }
  } 