#articles {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

#articles {
    align-items: stretch;
}

.article {
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}

.article img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 75vh;
    min-height: 200px;
}

.article_text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

#page_selector {
    background-color: #282828; //#15263a;
    padding: 5px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    text-align: right;
    padding: 10px;
    margin-bottom: 15px;
}

#page_selector {
    margin-top: 10px;
}

#page_selector #counter {
    padding: 2px 4px 2px 4px;
    border: 1px solid white;
    margin-left: 5px;
}