body {
    background-image: url('images/background.gif');
    background-size: auto;
    margin: auto;
    width: 900px;
    color: white;
    font-family: serif;
}

header {
    /* background-image: linear-gradient(violet, blue, darkblue); */
    background-image: linear-gradient(red, orange, yellow, green, blue, violet);
    padding: 10px;
    margin: 15px 0px;
    text-align: center;
    color: gray;
    text-shadow: #EEBC1D 3px 3px 5px;
}

.marquee {
    height: 25px;
    width: 900px;
    overflow: hidden;
    position: relative;
    color: rgb(255, 204, 102);
}

.marquee div {
    display: block;
    width: 200%;
    height: 30px;
    position: absolute;
    overflow: hidden;
    animation: marquee 5s linear infinite;
}

.marquee span {
    float: left;
    width: 50%;
}

section {
    font-size: 18px;
    border: 15px ridge rgb(255, 255, 102);
    padding: 20px;
    margin: 10px 0 10px 0;
}

section h2 {
    color: rgb(255, 0, 153);
    text-decoration: underline;
}

section {
    color: rgb(51, 255, 204);
}

section p em {
    color: red;
    font-weight: bold;
}

section #logo {
    float: right;
    max-width: 150px;
}

a {
    color: red;
}

.spin {
    color: white;
    text-align: center;
    animation: rotate 4s linear infinite;
    -webkit-animation: rotate 4s linear infinite;
}

.blink {
    animation: blinker 2s linear infinite;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: red;
}

.contact {
    display: block;
}

.contact img {
    height: 75px;
    float: right;
}

footer {
    padding: 20px 0 20px 0;
}

footer > img {
    padding-right: 5px;
    vertical-align: top;
}

footer #authorship {
    font-size: smaller;
    vertical-align: top;
    display: inline-block;
    max-width: 300px;
    margin: 0;
}

#viewcount {
    display: inline-block;
    vertical-align: top;
    padding: 2px;
}

#viewcount .digit {
    font-size: large;
    padding: 2px;
    border: 1px solid gray;
    display: inline-block;
    color: black;
    background-image: linear-gradient(black, white, white, white, black);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@keyframes rotate {
    from {
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
    }
    to {
        transform: rotateY(-360deg)    ;
        -webkit-transform: rotateY(-360deg)    ;
        -moz-transform: rotateY(-360deg)    ;
        -ms-transform: rotateY(-360deg)    ;
        -o-transform: rotateY(-360deg)    ;
    }
}

@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
}
