html {
  background-repeat: repeat-y;
  background-size: 100% 125vh; /* Stretched correctly */
}

/* Styles spécifiques pour Firefox */
@-moz-document url-prefix() {
  html {
    scrollbar-color: orange black;
    scrollbar-width: thin;
  }
}

/* Webkit (Chrome, Safari) scrollbar styles */
html::-webkit-scrollbar {
  width: 8px; /* La largeur de la scrollbar */
}

html::-webkit-scrollbar-track {
  background: black; /* Remplacez par la valeur de $color-white */
}

html::-webkit-scrollbar-thumb {
  background: #007bff; /* Remplacez par la valeur de $color-blue-main */
  border-radius: 10px; /* Assurez-vous que cette valeur est suffisante pour rendre la scrollbar arrondie */
  border: 4px solid orange; /* Pour ajouter un espace entre le pouce et la piste */
}

.bloc_video {
  height: 50%;
}

.video_cube {
  width: 100%;
  height: 550px;
  display: none;
}

/* Début Multi Color Border */

.multicolor {
  position: relative;
  margin: auto;
  width: auto;
  box-shadow: 0px 0px 30px 10px #000;
  display: block;
}

.multicolor:before,
.multicolor:after {
  content: "";
  position: absolute;
  background: linear-gradient(
    45deg,
    #fb0094,
    #0000ff,
    #00ff00,
    #ffff00,
    #ff0000
  );
  background-size: 300%;
  width: calc(100%);
  height: calc(100%);
  animation: steam 20s linear infinite;
}

.multicolor:after {
  filter: blur(50px);
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* Fin Multi Color Border */

.texte {
  font-family: SapphIIM;
  text-align: center;
  color: #f5f5f5;
}

.cadre {
  margin-top: 100px;
  column-gap: 2vw;
  display: flex;

  flex-direction: row;
  justify-content: space-around;

  margin-left: 15vw;
  margin-right: 15vw;

  background-color: rgba(0, 0, 10, 0.35);

  border-radius: 45px;

  padding: 20px;

  filter: drop-shadow(0 0 20px blue);

  border: 5px solid rgb(255, 255, 230);

  line-height: 35px;
}

.cadre_corner {
  padding: 40px;
  filter: drop-shadow(0 0 10px white);
}

.sur_cadre {
  display: inline-block;
  filter: drop-shadow(0 0 30px rgb(255, 255, 230));
}

.cadre_nebu {
  margin-top: 100px;
  column-gap: 2vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;

  margin-left: 15vw;
  margin-right: 15vw;

  border-radius: 45px;

  padding: 20px;

  filter: drop-shadow(0 0 20px white);

  border: 7px solid rgb(255, 255, 255);

  line-height: 35px;

  filter: drop-shadow(0 0 0.75rem white);
  background-color: rgba(0, 0, 24, 0.85);
}

.cadre_corner_nebu {
  padding: 40px;
  filter: drop-shadow(0 0 10px white);
}

.sur_cadre_nebu {
  display: inline-block;
  filter: drop-shadow(0 0 30px rgb(255, 255, 230));
}

.lien {
  font-family: Arial;
  font-size: 20px;
  color: orange;
  text-shadow: 1px 1px 1px white, 0 0 20px orange, 0 0 5px white;
  opacity: 1;

  display: inline-block;
}

.titre {
  font-size: 35px;
  text-shadow: 1px 1px 2px white, 0 0 20px grey, 0 0 5px white;
}

.titre_en_haut {
  font-size: 24px;
  text-shadow: 1px 1px 2px white, 0 0 20px yellow, 0 0 5px white;
  opacity: 1;
}

a:visited {
  color: white;
}

a:link {
  color: white;
  text-decoration-line: none;
}

.titre_lien_special {
  font-family: Arial;
  font-size: 22px;
  text-shadow: 1px 1px 1px lightblue, 0 0 20px lightblue, 0 0 5px white;

  display: inline-block;
}

#top,
#bottom,
#left,
#right {
  background: rgba(0, 0, 0, 0);
  position: fixed;
  z-index: 700;
}

#left,
#right {
  top: 0;
  bottom: 0;
  width: 10px;
}

#left {
  left: 0;
}

#right {
  right: 0;
}

#top,
#bottom {
  left: 0;
  right: 0;
  height: 10px;
}

#top {
  top: 0;
}

#bottom {
  bottom: 0;
}

@font-face {
  font-family: SapphIIM;
  src: url(./common/fonts/SapphIIM.ttf);
}
