* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.info {
    display: flex;
    text-align: center;
    flex-direction: column;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
}

.txt {
    margin-top: 3em;
    margin-bottom: 3em;
}


.styled {
    border: 0;
    height: 30px;
    /* définit une hauteur fixe pour le bouton */
    width: 15rem;
    font-size: 16px;
    /* définit la taille de la police de caractères */
    letter-spacing: 1px;
    /* définit l'espacement des lettres */
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 15px;
    background-color: #478ac9;
    cursor: pointer;
}


.styled:hover {
    background-color: #3970a3;
}

.li1 {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}

body footer {
    position: relative;
}
@media (max-height: 1000px) {
    .help h1 {
        margin-top: 100px;
    }

    .btn {
        margin-bottom: 100px;
    }
}

@media (max-height: 700px) {
    .help h1 {
        margin-top: 100px;
    }

    .btn {
        margin-bottom: 200px;
    }
}

@media (max-height: 530px) {
    .btn {
        margin-bottom: 400px;
    }
}

.pagination {
    display: flex;
    margin-bottom: 100px;
    justify-content: center;
    align-items: center;
    width: 100%;
  
}

/* Style pour les boutons "Previous" et "Next" */
button.previous,
button.next {
    background-color: #478ac9;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    margin: 0 10px;
    margin-bottom: 5px;
}

/* Style pour le bouton "Previous" */
button.previous {
    background-color: #3970a3;
}


/* Style pour le bouton "Next" */
button.next {
    background-color: #3970a3;
}

button:disabled {
    background-color: #ccc;
    /* gris foncé */
    color: #999;
    /* gris clair */
    cursor: default;
    /* curseur par défaut */
    
}

/* Style pour l'affichage du numéro de page */
span.pages {
    font-size: 18px;
    margin: 0 10px;
}
 
@media (max-width: 580px) {
    .styled {
        font-size: 12px;
        width: 12.5rem;
    }
}