.container-box {

    display:grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap:10px;
    margin-top: 40px;
    margin-left:10px;
    margin-right: 10px;
}
.category{

}
.category h5{
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 10px;
    padding:5px 5px;
    background-color: #f5f5f5;
}
.category .list-categories{
  
    padding-top: 10px;
}
.category .list-categories .the-categorie a{
  text-decoration:none;
  color:#1c1c1c;  
  
}


header {
    width:100%;
    background-color: #333;
    padding: 20px 0;
    text-align: center;
}

.header-content {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    padding: 5px;
}

.header-content img {
    width: 150px; /* ajustez la taille selon vos besoins */
    height: 150px; /* ajustez la taille selon vos besoins */
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.navbar{
    padding: 10px 10px;
}
.btn-carré{
    padding: 10px 10px;
}
/* h1 style*/

.titre-stylé {
    font-family: 'Arial', sans-serif;
    color: #333;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 50px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}





.last-post{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.last-post-card{
    margin:10px 10px;
}
.last-post-card .image {
    border:1px solid #f5f5f5 ;
}
.last-post-card .image img{
    width: 100%;
}
.last-post-card .info{
    border:1px solid #f5f5f5 ;
}
.last-post-card p{
    font-size: small;
    margin-left:5px;
}
.last-post-card h5{
    color:#2e8bde;
    margin-left:5px;
}
.last-post-card h5 a{
    text-decoration:none;
}

.bouton-carré {
    background-color: #003366; /* Bleu foncé */
    color: #fff; /* Texte blanc */
    border: none;
    padding: 10px 50px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.3s;
    font-weight: bold;
}
.btn-blue-foncé{
    
}
.btn-blue-foncé:hover{ background-color: #001a33;}
.bouton-carré:hover {
    background-color: #001a33; /* Variation de bleu foncé au survol */
}
/* media query */

@media only screen and (max-width: 768px) {
    .container-box {

        display:grid;
        grid-template-columns: 1fr;
        gap:10px;
        margin-top: 40px;
        margin-left:10px;
        margin-right: 10px;
    }

    .last-post{
        display:grid;
        grid-template-columns: 1fr;
    }
    
  }