html,body
{
background-image: url("discobg.jpg");
font-family: 'Play', sans-serif;
text-align:center;
     text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;}

div.page-header
{
    color:#003366;
    text-shadow: 2px 2px 5px #000000;

}

h1{    -webkit-animation: pump 1s linear 0.5s infinite alternate; /* Chrome, Safari, Opera */
    animation: pump 1s linear 0.5s infinite alternate; }

a,a:hover,h1,p,h2{
color:#FFCC00;

 }
 
img {
    opacity: 1.0;
    filter: alpha(opacity=40); /* For IE8 and earlier */
}

img:hover {
    opacity: 0.4;
    transform: scale(1.1,1.1);
    filter: alpha(opacity=100); /* For IE8 and earlier */
    
}
span.italic{
font-style:italic;
color:#FFFFFF; }

h3{
color:#FFFFFF }
.col-sm-4{ border-bottom:solid;}


/* Chrome, Safari, Opera */
@-webkit-keyframes pump {
    from { transform: scale(0.95,0.95);}
    to  { transform: scale(1.0,1.0);}
}

/* Standard syntax */
@keyframes pump {
    from { transform: scale(0.95,0.95);}
    to  { transform: scale(1.0,1.0);}
} 