.article{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.article_box{
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    width: auto;
    margin: 35px 0px;
    height: auto;
    border: 0px double white;
    border-radius: 15px;
    box-shadow: 3px 3px 5px 5px rgb(223, 223, 223);
}

.article_box img{
    max-width: 450px;
    height: fit-content;
    border-radius: 15px 0px 0px 15px;
}

.article_details{
    max-width: 450px;
    min-height: inherit;
    padding: 30px 0px 0px 20px;
}

.article_details h4{
    color: green;
    font-size: x-large;
    margin-bottom: 10px;

}

.article_details .btn_favoris{
    position: relative;
    top: -290px;
    left: -15%;
    color: white;
}

@media screen and (max-width: 920px) {
    .article_box{
        max-width: 450px;
        width: 300px;
    }
    .article_box img{
        border-radius: 15px 15px 0px 0px;
        width: 300px;
    }
    .article_details{
        width: 300px;
    }
}
