body {
    background-color: #3f3f3f;
    background-image: url("../images/floudark.jpg");
    background-size: cover; /* Ajuste l'image pour couvrir tout le contenu du body */
    background-attachment: fixed; /* Fixe l'image en arrière-plan */
    background-position: center; /* Centre l'image */
    color: white;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-family: 'Lato';
    height: 100%;
}

h4 {
    padding: 0;
    margin: 0;
}

h3 {
    margin: 0;
    padding: 0;
}

h2 {
    padding: 0;
    margin: 0;
}

h1 {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: white;
}

.animated {
    transform: scale(80%) !important;
}
@keyframes animation-all {
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes animation-barre {
    100% {
        opacity: 1;
    }
}
::-webkit-scrollbar {
    width: 8px;
    }
    
    /* Styling de la scrollbarre */
    ::-webkit-scrollbar-track {
      scrollbar-color: #aaa transparent;
    scrollbar-width: thin;
    }
    
    /* Styling des boutons sur la scrollbarre */
    ::-webkit-scrollbar-thumb {
      background: #aaa;
      border-radius: 8px;
    }
    
    /* Styling du pointeur de la scollbarre */
    ::-webkit-scrollbar-thumb:hover {
    background: #818181;
    }