body{
    padding: 0;
    margin: 0;
    left: 0;
    top:0;
    height:100%;
    background-color: #101010;
    overflow-x:hidden;
    color:white;
    overflow-y :scroll;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* Internet Explorer */
    user-select: none; 
    overflow: hidden;

}

/* Canvas styling with border */
canvas {
    border: 3px solid #000000; /* Blue border */
    display: block;
    margin: 0 auto; /* Center the canvas horizontally */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #101010; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #555; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #333; 
  }
  
  #myVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; /* Ajuste la largeur au viewport */
    height: 100vh; /* Ajuste la hauteur au viewport */
    object-fit: cover; /* Assure un remplissage correct sans déformation */
    z-index: -1; /* Place la vidéo derrière les autres éléments */
}
#volumeControl {
  width: 100px; /* Ajuste la largeur de la barre */
  margin-top: 10px;
  position: fixed;
  bottom: 1%;
  left: 1%;
  z-index: 99;
}
.menu{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width : 500px;
  height : 500px;
  z-index: 999;
  display : flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap : 20px;
}
.formulaire{
  background:linear-gradient(62deg, rgba(73, 156, 234, 0.11) 0%, rgba(26, 188, 188, 0.192) 100%);
  width : 50%;
  height : 30%;

  display : flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 500;
  border : 2px solid rgba(218, 165, 32, 0.418);
  background: linear-gradient(130deg, #003b6bb9, #0337a77a, #003b6bb9,#0337a77a, #003b6bb9,#0337a77a);
  background-size: 300% 300%;
  -webkit-animation: Animation 2s  infinite linear;
  -moz-animation: Animation 2s  infinite linear;
  animation: Animation 2s  infinite linear;
}
.formulaire:hover{
background: linear-gradient(130deg, #1973bd, #234da8, #1973bd,#234da8, #1973bd,#234da8);
background-size: 300% 300%;
  -webkit-animation: Animation 1s  infinite linear;
  -moz-animation: Animation 1s  infinite linear;
  animation: Animation 1s  infinite linear;
}
@-webkit-keyframes Animation {
  0%{background-position:0% 0%}
  99.99%{background-position:60% 60%}
  100%{background-position:0% 0%}
}
@-moz-keyframes Animation {
  0%{background-position:0% 0%}
  99.99%{background-position:60% 60%}
  100%{background-position:0% 0%}
}
@keyframes Animation { 
  0%{background-position:0% 0%}
  99.999999%{background-position:60% 60%}
  100%{background-position:0% 0%}
}
.boutonlancement{
  height:30%;
  width:80%;
  display:none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px 6px #398092;
  border-radius: 5px;
  transition: all 0.25s;
  font-size:4vh;
  font-family: "Lolb";
  color: rgb(240,220,180);
  cursor: pointer;
  background: linear-gradient(130deg, #003b6bb9, #0337a77a, #003b6bb9,#0337a77a, #003b6bb9,#0337a77a);
    background-size: 300% 300%;
    -webkit-animation: Animation 2s  infinite linear;
    -moz-animation: Animation 2s  infinite linear;
    animation: Animation 2s  infinite linear;
}

.boutonlancement:hover{
  background: linear-gradient(130deg, #1973bd, #234da8, #1973bd,#234da8, #1973bd,#234da8);
  background-size: 300% 300%;
    -webkit-animation: Animation 0.8s  infinite linear;
    -moz-animation: Animation 0.8s  infinite linear;
    animation: Animation 0.8s  infinite linear;
  transform : scale(1.1)
}
@keyframes shadows{
  0%{
    box-shadow: 0 0 8px 6px #398092;
  }
  50%{
    box-shadow: 0 0 8px 6px #1c8cb8;
  }
  0%{
    box-shadow: 0 0 8px 6px #398092;
  }
}
#AmongLegends{
  display:flex;
  width : 100%;
  height: 100%;
  font-size: 2vh;
  padding: 5px;
  text-decoration: none;
}
a:link { 
  text-decoration: none; 
} 
a:visited { 
  text-decoration: none; 
} 
a:hover { 
  text-decoration: none; 
} 
a:active { 
  text-decoration: none; 
}
.classement{
  position: absolute;
  width:15%;
  height:40%;
  right: 1%;
  top:1%;
  z-index: 999;
  transition: all 0.25s;
  border-radius: 0;
  background-color:rgba(10, 10, 12, 0.329);
  border : 2px solid rgba(167, 204, 201, 0.767);
  box-shadow: #101010 0 0 20px;
  transition-delay: 0.1s;
}
#leaders{
  font-size: 1.8vh;
  overflow-y: hidden;
  overflow-x: hidden;
  height: 95%;
  padding:0;
  width: 90%;
  padding-left:5%;
}
#lesleaders{
  padding-top: 1.8vh;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tuto{
  padding: 10px;
    position: absolute;
    width:15%;
    height:fit-content;
    left: 1%;
    top:5%;
    z-index: 999;
    background-color:rgba(10, 10, 12, 0.329);
    border : 2px solid rgba(167, 204, 201, 0.767);
    box-shadow: #101010 0 0 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.containerAtouts{
  display:none;
  position : absolute;
  width : 60%;
  height : 50%;
  top : 25%;
  left : 20%;
  z-index: 999;
  font-family: Arial, Helvetica, sans-serif;
  justify-content: space-around;
}
.choixAtouts{
  width : 25%;
  height : 100%;
  z-index: 999;
  background-color:rgba(10, 10, 12, 0.329);
  border : 2px solid rgba(167, 204, 201, 0.767);
  box-shadow: #101010 0 0 20px;
  display : flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
}
.imageAtout{
  width : 80%;
  aspect-ratio: 1/1;
  background-size: cover;
}