@import url('fonts.css');

body
{
    image-rendering: pixelated;
    font-smooth: none;
    margin: 0px;
    z-index: 0;
    background-image: url('/assets/img/backgrounds/bg/clouds.gif');
    animation: movingBackground 24s linear infinite;
    font-family: CeptorScript;
    color: white;
    text-shadow: 0px 1px black;
}

small
{
    font-family: TinySans;
    font-size: 16px;
}

.marchers
{
    background-image: url('/assets/img/march.gif');
    width: 100%;
    height: 16px;
    background-repeat: repeat no-repeat;
    animation: marchingSickana 2.5s linear infinite;
    z-index: 999;
    position: fixed;
    left: 0;
    bottom: 0;
    pointer-events: none;
}

#theme
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-direction: row;
}

#foreground
{
    background-repeat: repeat-x;
    background-image: url('/assets/img/backgrounds/fg/trees.gif');
    animation: movingBackground 12s linear infinite;
    width: 100%;
    height: 200px;
    z-index: -1;
    position: fixed;
    left: 0;
    bottom: 0;
}

a
{
    color: white;
}

footer
{
    line-height: 8px;
    user-select: none;
}

.center
{
    text-align: center;
}

section
{
    border: 1px outset maroon;
    background-color: maroon;
    color: white;
    text-shadow: 0px 1px black;
    text-align: left;
    padding: 8px;
    width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 36px;
    margin-bottom: 36px;
}

hr
{
    background-image: url('/assets/img/divider.gif');
    width: 540px;
    height: 4px;
    border: 0px;
}

header
{
    user-select: none;
}

#logo
{
    margin-top: 36px;
    display: flex;
    flex-direction: row;
    gap: 36px;
    justify-content: center;
    align-items: center;
}

@keyframes marchingSickana 
{
    0% { background-position-x: 0px; }
    100% { background-position-x: -130px; }
}

@keyframes movingBackground 
{
    0% { background-position-x: 0px; }
    100% { background-position-x: 320px; }
}