@font-face {
    font-family: 'Web IBM VGA 8x14';
    font-style: normal;
    font-weight: 400;
    src: url('web_ibm_vga_8x14.woff') format('woff');
}

* {
    font-family: "Web IBM VGA 8x14", sans-serif;
}

html {
    background-color: #0000ff;
    background-image: linear-gradient(45deg, #000087, #0000ff, #2c2cff, #00f);
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: bottom;
    background-size: contain;
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    color: #fff;
    image-rendering: pixelated;
}

#header {
    background-image: linear-gradient(90deg, #f00f, #dd0f, #0f0a, #00f0);
    background-size: 32% 100%;
    background-repeat: no-repeat;
    width: 800px;
    margin: 20px auto;
    font-weight: 100
}

#header h1 {
    display: inline-block;
    margin: 0px;
    margin-left: -12px;
    font-size: 64px;
    font-style: italic;
    text-align: left;
    vertical-align: middle;
}
#header #logo {
    padding-left: 8px;
    display: inline;
    vertical-align: middle;
}

@keyframes spin {
    0% {transform: translate3d(0, 0, -32px) rotate3d(0, 1, 0, 0deg)}
    100% {transform: translate3d(0, 0, -32px) rotate3d(0, 1, 0, 360deg)}
}
#spinner {
    display: block;
    float: right;
    padding: 4px;
    margin-top: auto;
    background-color: #000;
    border: 4px #888 outset;
    perspective: 128px;
    overflow: hidden;
}
#spinner img {
    width: 64px;
    height: 64px;
    transform: translate3d(0, 0, 32px);
    animation: spin 5s linear infinite;
}

#menu {
    background-color: #444;
    box-shadow: #000 8px 8px;
    width: 800px;
    margin: 20px auto;
    border: 2px #eee5 dotted;
}

#menu ul {
    width: 800px;
    margin: 0px auto;
    padding: 0
}

#menu ul li {
    display: inline-block;
    padding: 5px 20px 5px 0px
}

#menu ul li hr {
    display: none
}

a {
    background-color: #C1343D;
    color: inherit;
    text-decoration: none
}

a:hover {
    color: #888
}

#content {
    background-color: #22a;
    box-shadow: #000 8px 8px;
    border: 2px #eee5 dotted;
    width: 800px;
    margin: 20px auto
}

input[type=text],
input[type=password],
textarea,
select {
    padding: 5px 8px;
    min-width: 400px
}

input[type=submit] {
    min-width: 120px;
    padding: 2px;
    margin-top: 10px;
    background: #C1343D;
    color: white;
    border: 0;
    border-radius: 5px
}

textarea {
    min-height: 150px
}

label {
    margin: 5px 0px;
    display: block
}

#footer {
    border-top: 1px solid #eee
}

.entry {
    float: left;
    height: 220px;
    width: 250px;
    margin-right: 20px
}

.entry .vote select {
    width: 200px;
    min-width: initial
}

.entry .compo {
    font-size: 75%;
    font-weight: 100;
    color: #888;
}

.entry .entrystatus {
    background: #888;
    color: white;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 60%;
    font-weight: 100
}

#footer small {
    display: block;
    width: 800px;
    margin: 10px auto;
    font-size: 10px;
    color: #fff;
}

#livevoteContainer .votes {
    list-style: none;
    padding-left: 20px
}

#livevoteContainer #compoEntries {
    list-style: none;
    padding-left: 20px
}

#livevoteContainer #compoEntries h3 {
    font-weight: 100;
    margin: 30px 0px 10px
}

#livevoteContainer .votes {
    padding: 0
}

#livevoteContainer .votes .vote {
    display: inline-block;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    padding: 5px;
    text-align: center;
    margin: 3px;
    background: #f0f0f0;
    cursor: pointer
}

#livevoteContainer .votes .vote.selected {
    background: #CEC6BB;
}

#livevoteContainer .votes .vote.loading {
    animation-duration: 0.5s;
    animation-name: blink;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

#votesubmit,
#votingform h3,
#footer {
    clear: both
}

#visitors td:nth-child(2) {
    font-weight: 700
}

.success {
    background-color: green;
    padding: 20px;
    border: 2px solid green
}

.failure,
.error {
    background-color: red;
    padding: 20px;
    border: 2px solid red
}