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

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

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

#credits-content h2 {
    color: #F600FF;
}

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