@font-face {
    font-family: "VSFont";
    src: url(/fonts/radiospacebitmap.ttf);
}
ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 160px;
}
body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    font-family: "VSFont", sans-serif;
    color: white;
    background-image: url('/images/VSTitleNumbersOnly.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}
a {
    display: block;
    color: white;
    font-size: 44px;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
    font-family: "VSFont", sans-serif;
    transition: color 0.2s ease-in-out;
}
a:hover {
    color: #aa00aa;
}
.banner-container {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    margin-top: 12px;
    margin-bottom: 4px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-banner-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1200px;
}
#document-viewer {
    display: none;
    margin-bottom: 20px;
    border: none;
    transition: width 0.3s ease, height 0.3s ease, display 0.3s, visibility 0.3s;
}
#document-viewer.active-viewer {
    display: block;
    width: 90vw;
    height: 90vh;
    visibility: visible;
}