#articles-page-link-button {
    border-color: #8691c8;
    box-shadow: 0 0 10px #8691c87c;
}

.article-tile {
    position: relative;

    max-width: 50%;
    left: 25%;

    margin-bottom: 10px;
    padding: 0px 10px 0px 10px;

    border-style: solid;
    border-color: #a0a0a0;
    border-radius: 6px;
    border-width: 1px;

    background: linear-gradient(45deg, #221010, #0b0b22);

    color: #ffffff;
}
.article-tile a{
    text-decoration: none;

    display: flex;

    transition: all 0.5s;
}
.article-tile a:hover {
    text-shadow: 0 0 20px #ffffffb6;
}
.article-tile img {
    position: relative;
    top: 0px;
    left: -10px;

    object-fit: scale-down;
    width: 33%;
    max-height: 100%;

    margin: 0;

    border-radius: 6px;
}
.article-tile-title {
    top: 0;
    left: 33%;

    margin: 10px;

    align-self: center;

    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}
.article-tile-description {
    top: 0;

    margin: 10px 0 10px 0;

    font-size: 18px;
    color: #a0a0a0;
    text-decoration: none;
}