body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #22252a;
    color: #e2e5e9;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 14px;
}

/* header */
.hautPage {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background-color: #2a2e33;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
}

#centrerLogo {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
}

/* contenu */
#contenu {
    display: flex;
    justify-content: space-between;
    margin: 0 5%;
    height: calc(100% - 80px);
}

/* articles */
#lastArticle, #divArticle {
    position: inherit;
    margin-top: 2%;
    margin-bottom: 5%;
    width: 45%;
    background-color: #2c3138;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* texte du dernier article */
#lastTxt {
    margin-left: 8%;
    padding-top: 5%;
    font-size: 1.1rem;
    font-weight: 600;
}

/* articles listés */
#divArticle {
    overflow-y: auto;
    padding-left: 12px;
    border-left: 1px solid #3a4149;
}

/* listes des articles */
#listeArticle {
    list-style-type: none;
    font-size: 18px;
}

#listeArticle li {
    border-top: 3px solid #0651a7;
    border-radius: 5px;
    margin-right: 10%;
    margin-top: 5%;
    padding-top: 1%;
}

#listeArticle li a {
    color: #c8d2dc;
    text-decoration: none;
    transition: color 0.3s;
}

#listeArticle li a:hover {
    color: #4c9aff;
    text-decoration: underline;
}

.liensArticles{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* scrollbar */
#divArticle::-webkit-scrollbar {
    width: 10px;
}

#divArticle::-webkit-scrollbar-track {
    background: #2c3138;
}

#divArticle::-webkit-scrollbar-thumb {
    background-color: #4c9aff;
    border-radius: 6px;
    border: 2px solid #2c3138;
}

/* footer */
.basPage {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #2a2e33;
    color: #e2e5e9;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.4);
}

/* Liens généraux */
a {
    color: #4c9aff;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

a:hover {
    color: #a3cfff;
    text-decoration: underline;
    text-shadow: 0 0 4px rgba(76, 154, 255, 0.3);
}

/* Liens dans le footer */
footer a {
    color: #7aa2f7;
    font-weight: 500;
    font-size: 0.95rem;
}

footer a:hover {
    color: #d0e7ff;
    text-decoration: underline;
    text-shadow: 0 0 4px rgba(122, 162, 247, 0.4);
}

.corpsArticle{
    line-height: 1.5;
    max-width: 700px;
    margin: 30px auto;
    border: 2px solid #4c9aff;
    border-radius: 10px;
    padding: 15px 25px;
    background-color: #3a4149;
    box-shadow: 0 4px 12px rgba(76, 154, 255, 0.5);
}