#credits-title {
    background: url(/static/img/home/credits-s1.jpg) 54% 0;
    background-size: cover;
}

#credits-title h1 {
    animation: blue-glow 1000ms infinite alternate linear;
}

@keyframes blue-glow {
    0% {
        text-shadow: #59d6e4 0 0 10px, #59d6e4 0 0 15px, #59d6e4 0 0 20px, #59d6e4 0 0 25px, #59d6e4 0 0 38px;
    }
    100% {
        text-shadow: #59d6e4 0 0 10px, #59d6e4 0 0 15px;
    }
}

#credits-content h2 {
    color: #00E4FF;
}

@media (max-width: 992px) {
    #credits-title {
        background: url(/static/img/home/credits-s1-responsive.jpg) center;
        background-size: cover;
    }
}