header {
    text-align: center;

    height: auto;

    margin-bottom: 20px;
}
#header-border-top {
    position: relative;

    height: 2px;
    top: 0px;

    margin-bottom: 0px;

    background: linear-gradient(to right, #00000000, #d34a44, #00000000);
}
#header-border-bottom {
    position: relative;
    height: 2px;
    bottom: 0px;

    background: linear-gradient(to right, #00000000, #8691c8, #00000000);
}
#navigation-container {
    height: auto;
    width: auto;

    text-align: center;
}

.top-navigation-button {
    text-align: center;
    position: relative;

    height: 40px;

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

    margin: 5px 10px 5px 10px;
    padding: 10px 50px 10px 50px;

    display: inline-block;
    vertical-align: top;

    background: linear-gradient(45deg, #110707, #070614);

    transition: all 0.5s;
}
.top-navigation-button:hover {
    border-color: #ffffff;
    box-shadow: 0 0 10px #ffffff7c;
}

.top-navigation-button a {
    color: #a0a0a0;
    text-decoration: none;
    text-shadow: 0 0 2px #ffffff60;
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
    line-height: 36px;

    transition: all 0.5s;
}
.top-navigation-button a:hover {
    color:#ffffff;
    text-shadow: 0 0 10px #ffffffb6;
}

.top-navigation-button p {
    position: relative;
    top: -35px;
    opacity: 0;

    transition: all 0.5s;
}
.top-navigation-button:hover p {
    opacity: 100%;
    top: -24px;
}