    body,
    html {
        margin: 0;
        padding: 0;
        height: 100%;
    }

    main {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 70vh;
    }

    .question{
        color: white;
    }
    
    .bck_dilemmBtn{
        background-color: #F2F4F4 ; /* Définit la couleur d'arrière-plan pour le conteneur */
        border-radius: 20px; /* Ajoute un rayon arrondi au conteneur */
        margin-top: 20px; /* Marge par défaut pour les petits écrans */
        padding: 20px;
    }

    @media (max-width: 767px) {
        .bck_dilemmBtn {
            margin-left: 20px; /* Petite marge pour les petits écrans */
            margin-right: 20px;
            padding: 20px;
        }
    }

    @media (min-width: 768px) {
        .bck_dilemmBtn {
            margin-left: 20px; /* Marge moyenne pour les écrans moyens */
            margin-right: 20px;
            padding: 20px;
        }
    }

    @media (min-width: 992px) {
        .bck_dilemmBtn {
            margin-left: 30px; /* Plus grande marge pour les grands écrans */
            margin-right: 30px;
            padding: 20px;
        }
    }

    .bck_dilemme{
        background-color: #3108D2 ; /* Définit la couleur d'arrière-plan pour le conteneur */
        border-radius: 20px; /* Ajoute un rayon arrondi au conteneur */
        margin-top: 20px; /* Marge par défaut pour les petits écrans */
        padding: 20px;
    }

    @media (max-width: 767px) {
        .bck_dilemme {
            margin-left: 20px; /* Petite marge pour les petits écrans */
            margin-right: 20px;
            padding: 20px;
        }
    }

    @media (min-width: 768px) {
        .bck_dilemme {
            margin-left: 20px; /* Marge moyenne pour les écrans moyens */
            margin-right: 20px;
            padding: 20px;
        }
    }

    @media (min-width: 992px) {
        .bck_dilemme {
            margin-left: 30px; /* Plus grande marge pour les grands écrans */
            margin-right: 30px;
            padding: 20px;
        }
    }


    .footer {
        position: fixed;
        bottom: 0rem;
        width: 100%;
    }

    .footer p {
        color: #fff;
        margin: 0;
    }

    .custom-toggler {
        filter: invert(1);
    }

    .fullscreen-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        z-index: 9999;
        padding: 2rem;
    }

    .btn-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background-color: transparent;
        border: none;
        font-size: 1rem;
    }

    .social-icons {
        position: absolute;
        bottom: 4rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .droitAuteur {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
    }

    @font-face {
        font-family: 'Alkatra';
        src: url('../assets/fonts/Alkatra-VariableFont.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;

        font-family: 'LexendDeca';
        src: url('../assets/fonts/LexendDeca-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;

        font-family: 'Poppins-SemiBold';
        src: url('../assets/fonts/Poppins-SemiBold.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    .navbar-brand {
        font-family: 'Poppins-SemiBold', sans-serif;
    }

    .font-body {
        font-family: 'LexendDeca', sans-serif;
    }

    .logo-container {
        display: flex;
        align-items: center;
    }

    .navbar-brand-gradient {
        background-image: linear-gradient(90deg, #3108D2, #3108D2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .btn-brand-gradient {
        background-image: linear-gradient(90deg, #3108D2, #3108D2);
        color: white;
        border-radius: 15px;

    }

    .btn-brand-gradient:hover {
        color: white;
    }

    .btn-brand-gradient:focus,
    .btn-brand-gradient:active {
        color: white;
    }

    .fullscreen-menu .social-icons {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .fullscreen-menu .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .fullscreen-menu .nav-item:last-child {
        border-bottom: none;
    }

    .menu-group {
        background-color: beige;
        padding: 5px;
        margin-bottom: 10px;
        border-radius: 30px;
    }

    .menu-group-title {
        font-weight: bold;
        margin-bottom: 10px;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .modal-content {
        border-radius: 60px;
    }

    .image-columns {
        display: flex;
        justify-content: center;
        flex: 1;
        overflow: auto;
    }

    .image-column {
        flex: 1;
        padding: 10px;
    }

    .image-column img {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }

    .plateform-container {
        display: flex;
        justify-content: space-between;
        position: fixed;
        bottom: 15rem;
    }

    .image-wrapper {
        width: 50%;
        box-sizing: border-box;
        padding: 0 5px;
    }

    .modal-content {
        background-color: #f8f9fa;
        border-radius: 20px;
      }
      
      .modal-title {
        font-size: 28px;
        font-weight: 700;
      }
      
      .form-label {
        font-size: 16px;
        font-weight: 600;
      }
      
      .form-control {
        border-radius: 10px;
      }
      
      .btn-primary {
        background-color: #007bff;
        border-radius: 10px;
        border: none;
      }
      
      .btn-secondary {
        background-color: #6c757d;
        border-radius: 10px;
        border: none;
      }
      
      .btn-black {
        background-color: black;
        color: white;
        border-radius: 10px;
        border: none;
      }

      .banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: wheat;
        color: black;
        padding: 10px;
        text-align: center;
      }
      
      .banner p {
        margin: 0;
      }

      .banner a {
        margin-left: 10px;
        margin-right: 10px;
        color: black;      
        }
      
      .banner button {
        background-image: linear-gradient(90deg, #3108D2, #3108D2);
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
        margin-left: 10px;
      }

      .modal-body img {
        max-width: 100%; /* Permet à l'image de s'adapter à la largeur de son conteneur */
        height: auto; /* Maintient les proportions de l'image */
    }

    .btn-gradient {
        background-image: linear-gradient(to right, #27ae60, #f0932b);
        color: white; /* Assure une bonne lisibilité du texte */
        border: none; /* Enlève la bordure par défaut des boutons */
        text-align: left; /* Aligner le texte à gauche */
    }
    
    /* Ajout pour améliorer la visibilité du texte sur le dégradé */
    .btn-gradient:hover,
    .btn-gradient:focus {
        background-image: linear-gradient(to right, #218c54, #e67e22);
        color: white;
    }

    .option {
        padding-top: 10px; /* Augmente le padding en haut */
        padding-bottom: 10px; /* Augmente le padding en bas */
        font-size: 1.2em; /* Optionnel: augmente la taille de police pour équilibrer */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .option-text, .percent {
        display: inline-block;
    }
    
    .percent {
        margin-left: auto;
        visibility: hidden; /* Masquer initialement les pourcentages */
    }
