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%;
}
::-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;
    }
.contener{
    position: relative;
    height: 100vh; /* 100% de la hauteur de la fenêtre */
}

.text{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    transform: translate(-50%, -50%);
    /* Styles pour votre div centrale */
    text-align: center;
    font-family: 'Lato';
    font-size: 150%;
}