h2 {
    font: inherit;
    margin: 0;
    padding: 3vw 0 0 0;
}

h3 {
    font-size: 30px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    text-align: center;
    margin: 30px 0 20px 0;
}

section>header,
article>header {
    font-family: "Monotype Corsiva";
    color: rgb(112, 78, 57);
    text-decoration: underline;
}

h4 {
    font-size: 26px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    line-height: 1;
    text-align: center;
    margin: 0 0 10px 0;
}
h4>a{
    font: inherit;
    color: inherit;
}

article {
    overflow: hidden;
    box-shadow: 0px 2px 3px rgba(112, 78, 57, 0.4);
    margin: 0 auto 20px auto;
    padding: 5px 0;
    transition: box-shadow 1s ease-in-out;
    cursor: pointer;
    border-radius: 7px 0;
}

article:hover {
    box-shadow: 0px 1px 4px rgba(112, 78, 57, 1);
}

article>div>div {
    vertical-align: top;
    padding: 0 10px;
    font-size: 18px;
}

article>div>div>img {
    object-fit: cover;
    object-position: center; 
    max-width: 100%;
}

@media (min-width:851px) {
    article>div {
        height: 200px;
    }

    article>div>div {
        display: inline-block;
        height: 100%;
    }

    article>div>div:nth-child(1) {
        width: 300px;
    }

    article>div>div:nth-child(2) {
        width: calc(100% - 300px);
    }

    article>div>div>img {
        width: 100%;
        height: 100%;
    }
}

@media (max-width:850px) {
    article>div {
        max-height: 400px;
    }

    article>div>div {
        display: block;
    }

    article>div>div:nth-child(1) {
        width: 100%;
        text-align: center;
        height: 200px;
    }

    article>div>div:nth-child(2) {
        width: 100%;
        max-height: 200px;
    }

    article>div>div>img {
        width: 300px;
        height: 100%;
    }
}
.page_changer{
    width: fit-content;
    margin: auto auto 20px auto;
    list-style: none;
    padding: 0;
}
.page_changer>li{
    display: inline-block;
    width: 50px;
    height: 50px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.9);
    margin: 0 5px;
    border-radius: 7px 0;
    text-align: center;
    font-size: 26px;
    padding: 10px 0 0 0;
    font-family: "Monotype Corsiva";
    color: #555;
}
.page_changer>li>a{
    color: inherit;
    font-weight: 900;
    color: rgb(112, 78, 57);
}