/* CSS pour arrière-plan animé sur toutes les pages */

/* Option 1: Arrière-plan fixe avec opacité réduite (recommandé) */
body {
    position: relative;
    background-color: #00023b; /* Couleur de base */
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://i.gifer.com/J4o.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.3; /* Ajustez cette valeur entre 0 et 1 */
    z-index: -1;
    pointer-events: none;
}

/* Option 2: Alternative avec répétition du motif et opacité */




/* Si vous voulez ajouter une superposition semi-transparente supplémentaire */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 2, 59, 0.2); 
    pointer-events: none;
    z-index: -1;
}


  .bgwhite{
            background-color:rgba(229, 231, 235, 0.8);
        }