/* Reset des styles pour la mise en forme de base */
* {
    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;
  }

.container {
    background-color: red; 
    height: 100vh;
    width: 100%;
    top: 0%;
    left: 0%;
    display: flex;
    flex-direction: column;
    position: relative
}

.navigation-bar {
    background-color: #333; 
    display: flex;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 10%;
}

.tab {
    color: white; 
    text-align: center;
    font-size: xx-large;
    width: 25%;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.tab.active {
    background-color: #555; 
}

.tab:hover {
    background-color: #555; 
}

.contenu {
    width: 100%;
    height: 90%;
    margin-top: 0%;
    margin-left: 0%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: auto;
    background-color: rgb(26, 26, 26);
}

.texte {
    font-size: 1.3em;
    text-align: justify;
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    margin-left: 15%;
    margin-right: 15%;
    line-height: 1.4em;
}

.texte h1 {
    font-size: 3em;
    text-align: center;
    line-height: 1.5em;
}

.texte h2{
    text-align: center;
    margin-bottom: 2em;
    margin-top: 2em;
}

.texte h3{
    text-align: center;
}

.texte h4{
    margin-bottom: 1em;
    margin-top: 1em;
}

.texte img {
    margin-bottom: 2%;
    max-width: 20%;
    margin-left: auto; /* Marge automatique à gauche */
    margin-right: auto; /* Marge automatique à droite */
}



.texte video {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 2%;
    margin-bottom: 2%;
}

.code {
    background-color: black;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border-radius: 5px;
}

a {
    text-decoration: none;
    color: aqua;
}


