@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;
}
#files-page-link-button {
    border-color: #ffffff;
    box-shadow: 0 0 10px #ffffff7c;
}

.file {
    position: relative;

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

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

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

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

    color: #a0a0a0;
}
.file-title {
    color: #ffffff;
    font-style: italic;
}
.file-buttons-container{
    height: auto;
    width: auto;

    text-align: left;

    margin-bottom: 25px;
}
.file-button {
    text-decoration: none;
    text-align: end;
    color: #a0a0a0;
    font-size: 20px;
    font-weight: bold;
    font-family: Century-Gothic;

    background-color: #00000000;

    border-style: none solid none solid;
    border-color: #a0a0a0;
    border-width: 2px;
    border-radius: 4px;
    
    padding: 0px 3px 0px 3px;
    margin-left: 5px;

    transition: all 0.5s;
}
.file-button:hover {
    color: #ffffff;
    border-color: #ffffff;
    text-shadow: 0 0 10px #ffffffb6;
}
.file-border {
    height: 2px;
    margin: 5px 0 5px 0;

    background-image: linear-gradient(to right, #00000000, #a0a0a080, #a0a0a080, #00000000);
}