@font-face {
    font-family: Century-Gothic;
    font-weight: normal;
    font-style: normal;
    src: url(../util_font/GOTHIC.TTF);
}
@font-face {
    font-family: Century-Gothic;
    font-weight: bold;
    font-style: normal;
    src: url(../util_font/GOTHICB.TTF);
}
@font-face {
    font-family: Century-Gothic;
    font-weight: normal;
    font-style: italic;
    src: url(../util_font/GOTHICI.TTF);
}
@font-face {
    font-family: Century-Gothic;
    font-weight: bold;
    font-style: italic;
    src: url(../util_font/GOTHICBI.TTF);
}

body {
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    background: linear-gradient(to right, #18181b, #10101a);

    font-family: Century-Gothic;
    color: #a0a0a0;
    text-decoration: none;
}
#articles-page-link-button {
    border-color: #ffffff;
    box-shadow: 0 0 10px #ffffff7c;
}

.article {
    position: relative;

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

    margin-bottom: 20px;

    border-style: solid;
    border-color: #a0a0a0;
    border-radius: 10px;
    border-width: 2px;

    background: #070613;

    color: #a0a0a0;
}
.article-img-holder {
    position: relative;
    width: auto;
    height: auto;
}
.article-background-blur {
    position: absolute;
    top: 0;
    left: 0;

    border-radius: 10px;

    width: 100%;
    height: 100%;

    background-image: linear-gradient(180deg, #07061300, #070613);

    z-index: 2;
}
.article img {
    position: relative;
    top: 0;
    width: 100%;

    border-radius: 10px;

    z-index: 1;
}
.article-title {
    position: relative;

    margin: 10px;

    font-size: 50px;
    color: #ffffff;
    text-decoration: none;
}
.article p {
    margin-right: 10px;
    margin-left: 10px;
    font-size: 18px;
}

.article-title {
    font-style: italic;
}
.article-description {
    font-weight: bold;
}

a, a:hover, a::after {
    text-decoration: underline;
    color: #a0a0a0;
}
