body {
    color: white;
    text-align: center;
    background-color: black;
    background-image: url("/files/images/space.gif");
    margin: 0;
}
h1 {
    color: red;
    text-shadow: 2px 2px darkred;
}
a {
    color: cyan;
}
a:hover {
    color: lightcyan;
}
a:active {
    color: darkcyan;
}
.subtitle2 {
    color: lime;
}
.underConstruction {
    color: black;
    background-color: orange;
}
.grayed {
    color: lightgray;
}
#winampButton {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 15px;
    cursor: pointer;
}

.new-year-glow {
    transition: color,text-shadow 0.5s ease;
    color: white;
    text-shadow: white 0 0 10px;
}
.new-year-glow:hover {
    transition: none;
    color: violet;
    text-shadow: violet 0 0 10px;
}