/*  SEGI.css  
    20251002
*/
:root {
    --nav-height: 22px;
    --head-height: 80px;
    --page-height: 768px;
    --text-color: #c0c0ff;
    --highlight-color: #9860c0;
    --segi-color: #a880f0;
    --border-color: #280028;
    --header-color: #8080b0;
    
}

@font-face { font-family: SEGI; src: url('/fonts/AlienSpace.ttf'); } 
@font-face { font-family: SEGI; font-weight: bold; src: url('/fonts/AlienSpace.ttf'); } 

@font-face { font-family: Typewriter; src: url('/fonts/xfiles.ttf'); } 
@font-face { font-family: Typewriter; font-weight: bold; src: url('/fonts/xfiles.ttf'); } 

@keyframes space_travel {
    0%      {background-size: 25%;}
    49%     {background-size: 75%;}
    100%    {background-size: 25%;}
}
html {
    font-family: "Arial", "Helvetica";
    margin: 0 auto;
    width: 100%;
    background-color: #100810;
    background-image: url("SEGI_bg.jpg");
    background-position: center;
    animation: space_travel 300s infinite;
}

body {
    position: relative;
    margin: 10px auto 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 1024px;  min-height: 768px;
    background-color: rgba(0, 0, 0, 0.75);
    color: var(--text-color);
    font-size: 10pt;
    line-height: 1.25em;
}

.segi {
    font-family: SEGI;
    font-size: 80%;
    color: var(--segi-color);
}

.nav_bar {
    width: 100%;
    height: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    vertical-align: middle;
}

.button {
    display: inline-block; 
    width: calc(14.285% - 12px);
    height: var(--nav-height);
    margin: 0 4px;
    border: none;
    border-radius: 12px;
    padding: 1px 0;
    align-content: center;
    text-align: center;
    background-color: rgba(64, 64, 0, .5);
    color: #406000;
    font-family: SEGI;
}
button:hover {
    background-color: navy;
    filter: brightness(200%);
}

.icon16 {
    margin: 0;
    padding: 0;
    width: 16px;
    height: 16px;
}

header {
    margin: .5em auto 1.5em auto;
}

@keyframes glow {
    0%      {filter: brightness(135%);}
    50%     {filter: brightness(50%);}
    100%    {filter: brightness(135%);}
}
h1 {
    height: 1.25em;
    margin: 1em auto 0 auto;
    vertical-align: bottom;
    text-align: center;
    color: var(--segi-color);
    font-family: SEGI;
    font-size: 16pt;
    animation: glow 9s infinite;
}
h2 {
    height: 1em;
    margin: 1em auto 0 auto;
    vertical-align: bottom;
    text-align: center;
    color: var(--highlight-color);
    font-family: SEGI;
    font-size: 12pt;
}
h3 {
    height: 1em;
    vertical-align: bottom;
    text-align: left;
    color: var(--highlight-color);
    font-family: SEGI;
    font-size: 11pt;
}

section {
    width: 100%-4em;
    margin: .25em auto;
    padding: .25em 2em .25em 4em;
    font-family: Typewriter;
    line-spacing: 1;
}

p {
    font-size: 11.5pt;
    line-height: 1.5;
}

table {
    margin: none;
    padding: none;
    font: inherit;
    color: inherit;
}

th {
    vertical-align: top;
    padding: .0625em .75em;
    text-align: left;
    font-family: SEGI;
    font-size: 11pt;
    font-weight: bold;
    color: var(--highlight-color);
}

td {
    padding: .0625em .75em;
    font: inherit;
    font-size: inherit;
    color: inherit;
    vertical-align: top;
    text-align: left;
}

a {
    color: inherit;
    font-weight: bold;
    text-decoration: none;
}
a:hover {
    filter: brightness(200%);
}

#slide {
    display: block;
    border-radius: 12px;
    width: 800px; height: 450px;
    margin: 0 auto;
    opacity: .9;
}

figure {
    margin: 0 auto;
}

figcaption {
    text-align: center;
    font-style: italic;
    font-size: 10pt;
}

footer {
    position: absolute;
    bottom: -12px;
    height: 8pt;
    color: var(--header-color);
    width: 100%;
    font-size: 8pt;
}

#help {
    font-family: "Arial", "Helvetica", san-serif;
}

#visitor_log {
    position: relative;
    font-family: "Arial", "Helvetica", san-serif;
}
#visitor_log table {
    position: relative;
    margin: 0 auto;
    max-height: 600px;
    overflow-y: scroll; 
}
#visitor_log table tbody {
    position: relative;
    max-height: 400px;
    overflow-y: scroll;
}

#site_stats, #visitor_stats {
    font-family: san-serif;
    font-size: 8pt;
}

.mirror {
    display: inline-block; 
    transform: scaleX(-1);
}

eof{}