.blog_article {
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(149, 22, 31, 0.3);
    width: 98%;
    height: 160px;
    margin: 20px auto;
    box-sizing: border-box;
    text-align: left;
    overflow: hidden;
    vertical-align: top;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.blog_article:hover {
    box-shadow: 1px 1px 3px rgba(149, 22, 31, 1);
}

.blog_article>div {
    display: inline-block;
    vertical-align: top;
}

.article_image {
    width: 270px;
    height: 100%;
}

.article_intro {
    width: calc(100% - 270px);
    font-size: 16px;
    overflow: hidden;
    height: 148px;
}

.article_image>img {
    width: 250px;
    height: 140px;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(149, 22, 31, 1);
    object-fit: cover;
    margin: 10px;
}

.article_intro>header>h3 {
    margin: 0;
    padding: 13px 0 5px 10px;
    height: unset;
    font-size: 20px;
}

@media (max-width:700px) {
    .blog_article {
        height: initial;
    }
    .blog_article>div {
        display: block;
        width: 100%;
        height: initial;
    }
    .article_image {
        text-align: center;
    }
}

.last_in_blog{
    text-align: center;
}
.last_in_blog>h2{
    margin-top: 30px;
}
.last_in_blog>button{
    border-width: 0;
    border-color: rgb(176, 16, 27);
    border-style: solid;
    border-radius: 10px;
    background-color: rgb(176, 16, 27);
    height: 45px;
    font-size: 20px;
    font-family: "Arial";
    color: rgb(255, 255, 255);
    text-decoration: underline;
    text-align: center;
    text-shadow: 1px 1px 1px rgb(0 0 0);
    box-shadow: inset 1px 1px 2px white, inset -1px -1px 2px black;
    vertical-align: top;
    cursor: pointer;
}
.last_blog_article {
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(149, 22, 31, 0.4);
    width: 98%;
    max-height: 114px;
    margin: 20px auto;
    box-sizing: border-box;
    text-align: left;
    overflow: hidden;
    vertical-align: top;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.last_blog_article:hover {
    box-shadow: 1px 1px 3px rgba(149, 22, 31, 1);
}
.last_article_intro {
    width: 100%;
    font-size: 16px;
    overflow: hidden;
    text-align: left;
    padding: 0 15px;
    box-sizing: border-box;
}
.last_article_intro>header>h3{
    text-align: center;
}

.button_to_blog{
    border-width: 0;
    border-color: rgb(176, 16, 27);
    border-style: solid;
    border-radius: 10px;
    background-color: rgb(176, 16, 27);
    font-size: 20px;
    font-family: "Arial";
    color: rgb(255, 255, 255);
    text-decoration: underline;
    text-align: center;
    text-shadow: 1px 1px 1px rgb(0 0 0);
    box-shadow: inset 1px 1px 2px white, inset -1px -1px 2px black;
    cursor: pointer;
    width: fit-content;
    margin: auto;
    padding: 10px 8px;
    height: fit-content;
    color: white;
}
.button_to_blog>a{
    color: white;
}
h2>a{
    color: inherit;
    text-decoration: inherit;
}
.catalog>h1{
    font-weight: 100;
    margin: 0;
    padding: 10px 0 0 0;
    text-align: center;
}