/*css_whiteondark.css - general css for website that has white text on dark background */

body {
    min-height: 100%;
    background-image: linear-gradient(to top, red, orange, green, blue, indigo, violet);
    background-repeat: repeat-y;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

#grad2 {
    background-image: linear-gradient(to top, red, orange, green, blue, indigo, violet);
}

#grad3 {
    background-image: linear-gradient(to right, violet, blue, green, gold, red);
}

.large-style {
    font-family: 'Sofia', sans-serif;
    font-size: 27px;
}

.medium-style {
    font-size: 24px;
}

.small-style {
    font-size: 16px;
}

.copyright-style {
    font-size: 13px;
    color: lightgray;
}

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

a:active {
    color: cyan;
    text-decoration: none;
}

a:visited {
    color: lavender;
    text-decoration: none;
}

a:hover {
    color: cyan;
    text-decoration: underline;
}