* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.big
{
    width: 100%;
    height: 100%;
    position: absolute;
}

iframe {
    width: 100%;
    height: 89%; /* Ajustez la hauteur selon vos besoins */
    object-fit: fill;
}

.nav
{
    width: 100%;
    height: 10%;
    margin-top: 0%;
    margin-left: 0%;
    position: relative;
    background-color: #151515;
    border: 2px solid #000000; /* Exemple de bordure de 2px avec couleur blanche */
    box-sizing: border-box; /* Permet d'inclure la bordure dans la largeur et la hauteur totales */
}

.navHome
{
    width: 5%;
    height: 100%;
    margin-top: 0%;
    margin-left: 2%;
    position: absolute;
    display: flex;
}

img
{
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
}


a
{
    text-decoration: none; /* Supprimer le soulignement */
    color: rgb(255, 255, 255); /* Changer la couleur du lien en blanc */
}

.navGauche
{
    width: 20%;
    height: 95%;
    margin-top: 0%;
    margin-left: 12.5%;
    position: absolute;
    display: flex;
    align-items: center;
    background-color: #666;
    justify-content: center;
    font-size: 3vw;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 25px;
    border-style: solid;
    border-color: aliceblue;
    background: linear-gradient(45deg, #9b9b9b, #414141);
    background-size: 200% 200%;
    background-position: 0%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-position 0.9s ease, color 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Transition du dégradé en état initial */
}

.navGauche:hover 
{
    /* ... autres propriétés ... */
    background: linear-gradient(45deg, #2a50b0, #a41313);
    background-position: 100%; /* Déplacer le dégradé de couleur lors du survol */
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.navGauche:not(:hover) {
    background-position: 0%; /* Déplacer le dégradé de couleur lorsque la souris n'est plus sur le bouton */
}

.navMilieu
{
    width: 5%;
    height: 100%;
    margin-top: 0%;
    margin-left: 47%;
    position: absolute;
    display: flex;
}

.navDroite
{
    width: 20%;
    height: 95%;
    margin-top: 0%;
    margin-left: 67.5%;
    position: absolute;
    display: flex;
    align-items: center;
    background-color: #666;
    justify-content: center;
    font-size: 3vw;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 25px;
    border-style: solid;
    border-color: aliceblue;
    background: linear-gradient(45deg, #9b9b9b, #414141);
    background-size: 200% 200%;
    background-position: 0%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-position 0.9s ease, color 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Transition du dégradé en état initial */
}

.navDroite:hover 
{
    /* ... autres propriétés ... */
    background: linear-gradient(45deg, #2a50b0, #a41313);
    background-position: 100%; /* Déplacer le dégradé de couleur lors du survol */
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.navDroite:not(:hover) {
    background-position: 0%; /* Déplacer le dégradé de couleur lorsque la souris n'est plus sur le bouton */
}

.navLanguage
{
    width: 5%;
    height: 90%;
    margin-top: 0.2%;
    margin-left: 93%;
    margin-right: 2%;
    position: absolute;
    display: flex;
}

.navLanguage:hover
{
    width: 5.1%;
    height: 95%;
    margin-top: 0.1%;
    margin-left: 92.99%;
    margin-right: 2%;
    position: absolute;
    display: flex;
}

.bigBlock
{
    width: 100%;
    height: 90%;
    margin-top: 0%;
    margin-left: 0%;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #1E1E1E;
}


/* Barre de défilement pour les navigateurs WebKit */
/* Couleur de fond de la barre de défilement */
::-webkit-scrollbar {
    background-color: #333;
  }
  
  /* Barre de défilement elle-même */
  ::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
  }
  
  /* Barre de défilement au survol */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }
  
  /* Flèche de défilement (bouton de défilement) */
  ::-webkit-scrollbar-button {
    display: none;
  }
  
  /* Piste (partie de la barre de défilement qui ne contient pas le bouton de défilement) */
  ::-webkit-scrollbar-track {
    background-color: #444;
  }