.blog h1 {
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 10px;
}
.blog .informations {
    margin: 0 auto;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.blog .informations p {
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog .informations svg{
    height: 16px;
    width: 16px;
    margin-right: 3px;
}
.blog .image {
    display: flex;
    justify-content: center;
}
.blog .article_preview {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #1b1e21;
    color: #d6d8d9;
    width: 100vw;
    padding: 10px;
    text-align: center;
    z-index: 10000;
}
.blog_liste {
    max-width: 1000px;
    display:flex;
    flex-wrap: wrap;
}
.blog_liste h1{
    flex-basis: 100%;
    text-align: center;
}
.blog_liste ul {
    margin: 0 auto;
}
.blog_liste article {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
}
.blog_liste article p {
    text-align: justify;
}
.blog_liste h2 {
    color: black;
    font-size: 25px;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    transition: all ease 0.35s;
}
.blog_liste h2:hover {
    cursor: pointer;
    color: #D3BDA0;
}
.blog_liste a:hover, .blog_liste a:visited, .blog_liste a:link, .blog_liste a:active
{
    text-decoration: none;
}
.blog_liste img {
    max-width: 500px;
    object-fit: contain;
    margin-right: 20px;
    transition: all ease 0.35s;
}
.blog_liste img:hover{
    cursor: pointer;
}
.blog_liste .informations {
    justify-content: flex-start;
    margin: 5px 0 10px;
}
@media screen and (max-width: 1158px) {
    .blog_liste article {
        flex-wrap: wrap;
    }
    .blog_liste img {
        max-width: inherit;
        width: 100%;
        margin-bottom: 7px;
    }
    .blog_liste h2 {
        font-size: 22px;
    }
    .blog_liste article p {
        font-size: 14px;
    }
}