﻿body {
    font-family:Arial, Helvetica, sans-serif;
    background: url('../images/tipster_bkg.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-size:1em;
}

#outer {
    width:500px;
    margin:5%;
    background-color:darkgreen;
    border-radius:25px;
    -webkit-background-radius:25px;
    -moz-background-radius:25px;
    border:1px solid darkgoldenrod;
}

#inner {
    margin:25px;
    padding: 15px;
    background-color:palegoldenrod;
    border-radius:25px;
    -webkit-background-radius:25px;
    -moz-background-radius:25px;
    border:1px solid black;
}

h1 {
    text-align:center;
    font-family: 'Fontdiner Swanky', cursive;
}

footer {
    position:fixed;
    bottom:5px;
    left:15px;
    color:white;
}

footer a {
    color:white;
    text-decoration: none;
}

footer a:hover {
    color:yellow;
    text-decoration:underline;
    font-weight: bold;
}

footer a:visited {
    color:yellow;
}