.article_item {
    display: flex;
    flex-flow: row wrap;
    align-content: space-around;
    justify-content: space-around;
    list-style: none;
    gap: 0px;
    text-align: center;
}

.article_presentation_block {
    width: 600px;
    height: 120px;
    background-color: #707070;
    margin-right: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 4px;
    border: 1.5px solid #0072ff;
    border-radius: 25px;
    transition: 0.5s ease-in-out;
    justify-content: center;
    overflow: hidden;
    padding-left: 3px;
}

.article_presentation_block:hover {
    background-color: #505050;
    border: 2px solid #00ffff;
    scale: 1.1;
}

.article {
    color: #fff;
}

.article_title {
    margin: 5px;
}

.article_description {
    color: #dcdcdc;
    margin: 0px;
    margin-top: -35px;
    height: 60px;
}

.article_logo {
    position: relative;
    top: -30px;
    left: -110px;
    right: 1px;
    width: 24px;
    max-width: 24px;
    max-height: 24px;
    height: 24px;
}

.info_article {
    position: relative;
    top: -20px;
    left: -10px;
    right: 10px;
    margin: 0px;
}

@media only screen and (min-width: 800px) {

    .article_presentation_block {
        height: 90px;
    }

    .article_description {
        height: 25px;
    }

    .info_article {
        position: relative;
        top: -20px;
        left: -10px;
        right: 10px;
        margin: 0px;
    }

}
