main.actualite{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: #fff;
    padding: 40px;
    box-shadow: 10px -10px 10px rgba(54, 54, 54, 0.5);
    width: calc(100% - 100px);
    margin: 50px auto;
}
main.actualite > h1{
    text-align: center;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    padding-bottom: 50px;
}
main.actualite article h2{
    font-family: "Oswald", sans-serif;
    padding: 20px 0 10px;
    border-bottom: 1px dotted rgba(0, 0, 0, .2);
    margin-bottom: 10px;
    color: rgb(51, 51, 51);
    width: 100%;
}
/* FIN ACTUALITE */

article.illustration{
    width: 100%;
    height: auto;
}
article .image-bolc{
    width: 100%;
    height: auto;
}
article .image-bolc img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

@media screen and (max-width: 575px){
    main.actualite{
        width: calc(100% - 20px);
        padding: 20px
    }
    main.actualite > h1{
        font-size: 33px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    main.actualite p{
        font-size: 13.5px;
    }

    main.actualite h2{
        font-size: 20px;
    }
}