* {
    margin: 0;
}

.big
{
    width: 100%;
    height: 100%;
    position: absolute;
}

.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, 217, 0); /* 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;
}

.scrollableContent 
{
    height: 100%; /* Hauteur fixe pour la zone de défilement */
    overflow: auto; /* Permet le défilement si le contenu dépasse la hauteur fixe */
}

.titles
{
    width: 100%;
    height: 20%;
    margin-top: 0%;
    margin-left: 0%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #1E1E1E;
    overflow: hidden;
    flex-direction: column;
}

.titles h1
{
    font-size: 4vw;
}

.titles p
{
    font-size: 1vw;
}

.block
{
    width: 80%;
    height: 40%;
    margin-top: 2%;
    margin-left: 10%;
    position: relative;
    display: flex;
    flex-direction: row;
    font-size: 1vw;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #151515;
    overflow: hidden;
    border-radius: 10px;
}

.blockImage
{
    width: 25%;
    height: 90%;
    margin-top: 1%;
    margin-bottom: 1%;
    margin-left: 1%;
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 1vw;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #151515;
}

.blockImage img
{
    object-fit: fill;
    max-height: 100%;
    min-height: 100%;
}

.blockImage video
{
    min-height: 100%;
    min-width: 100%;
    object-fit: fill;
}

.blockText
{
    width: 70%;
    height: 90%;
    margin-top: 1%;
    margin-bottom: 1%;
    margin-left: 1%;
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 1vw;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #151515;
    overflow: hidden;
}

.blockText h2
{
    font-size: 4vw;
    color: gold;
}

.blockText p
{
    font-size: 1.3vw;
}

/* 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;
  }


